?? 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 + -