为了账号安全,请及时绑定邮箱和手机立即绑定

以下代码中如何传递用户名yx,麻烦请高手指教?

以下代码中如何传递用户名yx,麻烦请高手指教?

PIPIONE 2022-04-08 11:07:03
<!--#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"))输出值。

查看完整回答
反对 回复 2022-04-11
?
神不在的星期二

TA贡献1963条经验 获得超6个赞

尽量不要滥用session,会给你的服务器造成压力。
传值给自定义变量就OK

查看完整回答
反对 回复 2022-04-11
?
暮色呼如

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下面开发积累的一些经验,希望能给大家一点帮助!



查看完整回答
反对 回复 2022-04-11
  • 3 回答
  • 0 关注
  • 170 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信