?? 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>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -