📄 checkedit.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%response.buffer=true%>
<!--#include file="conn.asp"-->
<!--#include file="admin.asp"-->
<%
wid=request("wid")
ids=request.QueryString("ids")
if ids="" or ids<1 then ids=1
%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<head>
<meta http-equiv="Cache-Control" content="no-Cache"/>
<meta http-equiv="Cache-Control" content="max-age=0"/>
</head>
<card title="修改网址">
<%
set rs=Server.CreateObject("ADODB.Recordset")
rsstr="select * from [urls] where [wid]=" & wid
rs.open rsstr,conn,1,2
set rst=server.createobject("ADODB.Recordset")
Sql="select * from class order by ClassID asc"
rst.open Sql,conn,1,1
%>
<p>分类:<select title="" name="fenlei" value="<%=ids%>">
<%
i=1
do while not rst.eof
%>
<option value="<%=rst("ClassID")%>"><%=rst("ClassID")%>.<%=rst("ClassName")%></option>
<%
i=i+1
rst.movenext
loop
rst.Close
set rst=nothing
%>
</select></p>
<p>网站名称:<input name="site" title="" type="text" format="*M" emptyok="true" maxlength="30" value="<%=rs("site")%>"/></p>
<p>网站地址:<input name="url" title="ַ" type="text" format="*M" emptyok="true" maxlength="100" value="<%=rs("url")%>"/></p>
<p>网站简介:<input name="about" title="" type="text" format="*M" emptyok="true" maxlength="100" value="<%=rs("about")%>"/></p>
<p>
<anchor>[-修改-]
<go href="checkeditok.asp" method="post" accept-charset="utf-8">
<postfield name="wid" value="<%=wid%>"/>
<postfield name="ids" value="$(fenlei)"/>
<postfield name="site" value="$(site)"/>
<postfield name="url" value="$(url)"/>
<postfield name="about" value="$(about)"/>
</go>
</anchor><br/>
<br/>
<a href="check.asp">[审核网站]</a><br/>
<a href="index.asp">[网站首页]</a>
</p>
</card>
</wml>
<%else%>
<%response.redirect"index.asp"%>
<% end if%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -