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

📄 2fly_class_add.asp

📁 功能简单的图书管理系统基本实现了图书管理借阅览等功能模块完成相关组件的实现
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%
booktypeid=request.querystring("booktypeid")
if booktypeid<>"" then 
set rs=server.createobject("adodb.recordset")
sql="select * from booktype where booktypeid="&booktypeid
rs.open sql,db,1,3
booktype=rs("booktype")
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>2Fly 添加分类</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="2fly_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" value="<%=booktype%>">
        <input name="booktypeid" type="hidden" id="booktypeid" value="<%=booktypeid%>">
        &nbsp;&nbsp; 
        <input type="submit" name="Submit" value="添加 或 修改">
&nbsp;&nbsp;&nbsp; 
      </td>
  </tr></form>
</table>
<p align="center"><!--#include file="2fly_wei.asp"--></p>
</body>
</html>

⌨️ 快捷键说明

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