📄 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 + -