以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  手机端的用户名  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=114090)

--  作者:jianjingmaoyi
--  发布时间:2018/1/28 18:20:00
--  手机端的用户名
手机端的用户名如何传递到其他页面:

Dim sb As New StringBuilder
Dim
Verified As Boolean
Dim
UserName As String
= e.Cookies("username") \'cookie中获取用户名
Dim
Password As String
= e.Cookies("password") \'cookie中获取用户密码
\'如果在登录页面输入了用户名和密码后单击确定按钮
If
e.Path = "logon.htm" AndAlso e.PostValues.ContainsKey("username") AndAlso e.PostValues.ContainsKey("password"Then

    UserName = e.PostValues("username")
    Password = e.PostValues("password")

End
If

--  作者:有点甜
--  发布时间:2018/1/28 23:46:00
--  

 存放在cookies上,或者vars变量上

 

http://www.foxtable.com/mobilehelp/scr/0042.htm