admin_add0.asp

来自「系统功能说明: 1 本书库系统专为以文字为主的站点设计」· ASP 代码 · 共 37 行

ASP
37
字号
<!--#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 + =
减小字号Ctrl + -
显示快捷键?