⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xh_add.asp

📁 这是一个 用ASP实现的图书管理系统,简单但实用!
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from xhbooktype"
rs.open sql,db,1,3
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
table {
	font-size: 9pt;
	text-decoration: none;
	border: 1px solid #000000;
}
-->
</style>
<style type="text/css">
<!--
a {
	font-size: 9pt;
	color: #FFFFFF;
	text-decoration: none;
}
-->
</style>
</head>

<body>
<table width="88%" border="0" align="center" cellpadding="5" cellspacing="0">
  <tr>
    <td align="center" bgcolor="#006699"><font color="#FFFFFF">添 加 书 籍 分 类 &nbsp;&nbsp;&nbsp;&nbsp;(<a href="xh_booktype.asp">删除分类</a>)</font></td>
  </tr><form name="form1" method="post" action="booktypesave.asp">
  <tr>
      <td height="61" align="center"> 
        <input name="booktype" type="text" id="booktype">
        &nbsp;&nbsp; 
        <input type="submit" name="Submit" value="添加到">
        &nbsp;&nbsp;&nbsp; 
        <select name="select">
          <option value="其他类" selected>其他类</option>
          <%do while not rs.eof%>
		  <option value=<%=rs("booktype")%>><%=rs("booktype")%></option>
		  <%
		  rs.movenext
		  loop
		  rs.close
		  set rs=nothing
		  %>
        </select>
      </td>
  </tr></form>
</table>
<p align="center"><!--#include file="xh_wei.asp"--></p>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -