|
|
<%
dim rs2
if request.cookies("timesshop")("username")="" then
response.Write "请先登录"
response.End
end if
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from [user] where username='"&request.cookies("timesshop")("username")&"' ",conn,1,1
%>
<%
rs.close
set rs=nothing
%> |
|