📄 reply.asp
字号:
<!--#include file="inc/dbconn.asp"-->
<%
id = request.querystring("id")
Function Deal(exp1)
dim exp2
exp2=Replace(exp1,"<","<")
exp2=Replace(exp2,">",">")
exp2=Replace(exp2,"'","''")
exp2=Replace(exp2,Chr(13),"<br>")
Deal=exp2
End Function
%>
<%
Set rs=Server.CreateObject("ADODB.RecordSet")
strsql="Select * from 留言本 where ID = " & id
rs.open strsql,conn,1,3
rs("Reply_Icon") = request("repic")
rs("Reply") = request("remain")
rs("Reply_Date") = cstr(now())
rs("Replyname") = request("replyname")
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
Response.Redirect "index.asp"
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -