📄 admin_add0.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="top.asp"-->
<!--#include file="chk.asp"-->
<table width=600px cellspacing=0 cellpadding=0 align=center border="0">
<tr>
<td align=center><br>
---------------------------------------------<br>
<b>选择类别</b><br>
<form action=admin_add.asp method=post>
<table align=center width=90% height=100% border=0 cellspacing=0 cellpadding=5>
<tr>
<td width=100px valign="top">选择文章分类 :
<td>
<select name="kindid">
<option value="" selected>请选择分类</option>
<%
sql="select * from kind"
set rs=server.createobject("ADODB.Recordset")
rs.open sql,conn,1,1
while not rs.eof
%>
<option value="<%=rs("kindid")%>"><%=rs("kindname")%></option>
<%
rs.movenext
wend
rs.Close()
%>
</select>
<tr>
<td colspan=2 align=center>
<input type=submit value="下一步" name="submit">
</table>
<p>
</form>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -