?? user_edithbchk.asp
字號:
<!--#include file=conn.asp-->
<!--#include file=cookies.asp-->
<link href="inc_style.css" rel="stylesheet" type="text/css">
<%
dim rs,sql,id,username,email,hb,jf
id=trim(request("id"))
hb=trim(request("hb"))
jf=trim(request("jf"))
if not isnumeric(jf) or jf="" then
response.write "<li>積分只能為數字!"
cl
response.end
end if
if not isnumeric(hb) or hb="" then
response.write "<li>貨幣只能為數字!"
cl
response.end
end if
if not isnumeric(id) or id="" then
response.write "<li>參數錯誤!"
cl
response.end
end if
set rs=server.createobject("adodb.recordset")
sql="select hb,jf from [user] where id="&id
rs.open sql,conn,1,3
if rs.eof or rs.bof then
response.write "<li>參數錯誤!"
cl
response.end
end if
rs("jf")=jf
rs("hb")=hb
rs.update
rs.close
set rs=nothing
closedb
response.write "<li>修改積分成功!"
call cl()
%>
<%sub cl()%>
<body onLoad="setTimeout(window.close, 2000)">
<%end sub%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -