del_introduce.asp

来自「图书管理系统」· ASP 代码 · 共 25 行

ASP
25
字号
<%@ Language=VBScript %>
<!--#include file ="identify.asp"-->
<% Response.Expires = 0 %>
<%
	bookid = Request.QueryString("bookid")

	set conn = server.CreateObject("adodb.connection")
	conn.Open application("dsn")
	
	sql = "delete from introduce where bookid = " & bookid
	conn.Execute sql
	conn.Close
	set conn = nothing	
%>

<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=xmain.asp">
<link rel="stylesheet" type="text/css" href="xcss.css">
</head>
<body>
</body>
</html>

⌨️ 快捷键说明

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