📄 sp25175_class_add.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>添加分类</title>
<link href="images/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="88%" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td align="center" bgcolor="#3366CC"><font color="#FFFFFF">添 加 书 籍 分 类 </font></td>
</tr><form name="form1" method="post" action="sp25175_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%>">
<input type="submit" name="Submit" value="添加 或 修改">
</td>
</tr></form>
</table>
<p align="center"><!--#include file="bottom.asp"--></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -