📄 del_new.asp
字号:
<%@ 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 newbook 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -