?? sort.asp
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="open.asp" -->
<!--#include file="checkadmin.asp" -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>無標題文檔</title>
</head>
<body>
<%
SQL="Select pro_name from product group by pro_name "
Set rs=Server.CreateObject("ADODB.RecordSet")
rs.Open SQL,con,1,1
for i=1 to rs.RecordCount
SQL1="insert into pro_type(pro_name)Values('"&rs("pro_name")&"')"
con.Execute SQL1
rs.Movenext
next
rs.Close
Set rs=nothing
%>
</body>
</html>
<!--#include file="close.asp" -->
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -