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

📄 youxiao.asp

📁 大家好
💻 ASP
字号:
<%@ language="vbscript" %>
<!--#include file="..\adovbs.inc"-->
<%
  custid=request("custid")  
  DbPath = SERVER.MapPath("..\bookshop.mdb")
  Set conn = Server.CreateObject("ADODB.Connection")
  conn.open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DbPath
  sql="update  customer  set staus=1 where custid="&custid&" " 
  conn.execute sql
  conn.close
  response.redirect "sent.htm"
  response.end 
%>
<html>

<head>
<title></title>
</head>

<body>
</body>
</html>

⌨️ 快捷键说明

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