bookdel.asp

来自「图书管理功能」· ASP 代码 · 共 22 行

ASP
22
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
<%
   dim dbcon,bookid,strsql
  
   bookid=request.QueryString("bookid")
   set dbcon=server.createobject("adodb.connection")
	dbcon.open "dsn=ourdb;uid=sa;password=;"
	 strsql="delete from bookinfo where bookid='"&bookid&"'"
	 dbcon.execute(strsql)
	  response.write("删除成功!!")
	 set dbcon=nothing
	 %>
</body>
</html>

⌨️ 快捷键说明

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