uploaddoc.asp

来自「添加我下载到的东西」· ASP 代码 · 共 16 行

ASP
16
字号
<%@LANGUAGE="VBSCRIPT"%>
<!--#INCLUDE file="dblink.asp" -->
<%
dim strsql
'********************************************************************
' 读数据库相关操作
strsql="update " & Request.QueryString("Type") & " set subject='"& Request.form("inputSubject") & "' where ID=" & Request.QueryString("ID")
conn.execute(strsql)
conn.Close
' 释放数据库连接对象
set conn=nothing
if Request.QueryString("Type") = "word" then
	Response.Redirect "DocList.asp"
end if
%>

⌨️ 快捷键说明

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