?? epsd.asp
字號:
<!--#include file=conn.asp-->
<%
dim rs
set rs=server.CreateObject("adodb.recordset")
strSql="Select user_id From user where username='" & request.Cookies("xingxing")("username") &"'"
rs.open strSql,conn
user_id=rs(0)
Dim strSql,varPassword
varPassword=Request.Form("password")
strSql="Update user set password='"& varPassword &"'where user_id="& user_id
conn.Execute(strSql)
Response.Redirect "right1.asp"
rs.close
set rs=nothing
closedb
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -