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

📄 bookmod.asp

📁 图书管理功能
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
<h4 align="center"><font color="#6699ff">图书信息修改</font> </h4>
<hr/>
<%
      dim dbcon,rs,strsql
	  dim bookid,booktitle,bookauthor,bookprice,bookpub
	 bookid=request.querystring("bookid")
	 set dbcon=server.createobject("adodb.connection")
	 set rs=server.createobject("adodb.recordset")
	 dbcon.open "dsn=ourdb;uid=sa;password=;"
	 rs.locktype=2
	 strsql="select * from bookinfo where bookid='"&bookid&"'"
     rs.open strsql,dbcon
	 do while not rs.eof
	     booktitle=rs("booktitle")
		 bookauthor=rs("bookauthor")
		 bookprice=rs("bookprice")
		 bookpub=rs("bookpub")
		 rs.movenext
		 loop
	%>
<form name="form1" method="post" action="bookmodhandle.asp">
  <table width="50%" border="3" align="center">
    <tr> 
      <td width="34%"><div align="center">图书编号</div></td>
      <td width="66%"><div align="center">
          <input type="text" name="bookid" value=<%=bookid%> readonly>
        </div></td>
    </tr>
    <tr> 
      <td><div align="center">图书名称</div></td>
      <td><div align="center">
          <input type="text" name="booktitle" value=<%=booktitle%>>
        </div></td>
    </tr>
    <tr> 
      <td><div align="center">图书作者</div></td>
      <td><div align="center">
          <input type="text" name="bookauthor" value=<%=bookauthor%>>
        </div></td>
    </tr>
    <tr> 
      <td><div align="center">图书价格</div></td>
      <td><div align="center">
          <input type="text" name="bookprice" value=<%=bookprice%>>
        </div></td>
    </tr>
    <tr> 
      <td><div align="center">出版社</div></td>
      <td><div align="center">
          <input type="text" name="bookpub" value=<%=bookpub%>>
        </div></td>
    </tr>
    <tr> 
      <td>&nbsp;</td>
      <td><div align="center">
          <input type="submit" name="Submit" value="图书修改">
        </div></td>
    </tr>
  </table>
</form>
</body>
</html>

⌨️ 快捷键说明

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