<!--#include file="toubu.asp" --><!--#include file="conn.asp" --><%dim c,dc=request.form("c")d=request.form("d")yx=request.form("yx")mm=request.form("mm")if request.form("yx")="" thenresponse.write"登入失败,邮箱不能为空"%><table width="980" height="30" border="0" align="center" cellpadding="0" cellspacing="0" background="img/bankuai.jpg"><tr><td width="980" align="center"><a href="yhdr.asp"><font color="#000000" style="font-size:18px">返回上一页重新登入</font></a></td></tr></table><%elseif request.form("mm")<6 thenresponse.write"密码不能少于6位!!!"%><table width="980" height="30" border="0" align="center" cellpadding="0" cellspacing="0" background="img/bankuai.jpg"><tr><td width="980" align="center"><a href="yhdr.asp"><font color="#000000" style="font-size:18px">返回上一页重新登入</font></a></td></tr></table><%elseif c<>d thenresponse.write"验证码不正确,请核实!!!"%><table width="980" height="30" border="0" align="center" cellpadding="0" cellspacing="0" background="img/bankuai.jpg"><tr><td width="980" align="center"><a href="yhdr.asp"><font color="#000000" style="font-size:18px">返回上一页重新登入</font></a></td></tr></table><%elseif c=d thenset rs=server.createobject("adodb.recordset")sql="select * from zc where yx='"+yx+"' and mm='"+mm+"'"rs.open sql,conn,1,1response.write"登入成功"session("yx")=rs("yx")session("nc")=rs("nc")session("id")=rs("id")session("zt")=rs("zt")session("jb")=rs("jb")session("sj")=rs("sj")session("file1")=rs("file1")session("file2")=rs("file2")response.redirect "wodejiayuan.asp"end ifconn.closeset conn=nothing%><!--#include file="tweibu.asp" -->以上代码如何传递用户名yx我是要把阿用户名传递到下一个页面,如何传递,请高手指教
3 回答
Smart猫小萌
TA贡献1911条经验 获得超7个赞
你登陆成功了,已经产生了yx的一个session,那么在你需要传递用户名的页面,或者说是需要获取该用户名的页面,使用:
session("yx")
就是yx的值了,你可以在传递的页面直接写:
Response.Write(session("yx"))输出值。
暮色呼如
TA贡献1853条经验 获得超9个赞
IE是有缓存的。
ASP关于页面缓存清除的方法小结
清除页面缓存的一些方法如下:
1、在Asp页面首部加入
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "No-Cache"
2、在HtML代码中加入
<HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
</HEAD>
3、在重新调用原页面的时候在给页面传一个参数
Href="****.asp?random()"
其实使用IIS5以后这样的问题自然而然的少了很多,所以现在我也很少用这样的一些话来强制更新页面,以上也是我们原来在IIS4下面开发积累的一些经验,希望能给大家一点帮助!
- 3 回答
- 0 关注
- 170 浏览
添加回答
举报
0/150
提交
取消