Foxtable(狐表)用户栏目专家坐堂 → 手机端的用户名


  共有1625人关注过本帖树形打印复制链接

主题:手机端的用户名

帅哥哟,离线,有人找我吗?
jianjingmaoyi
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:三尾狐 帖子:760 积分:4714 威望:0 精华:0 注册:2011/12/17 18:37:00
手机端的用户名  发帖心情 Post By: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

 回到顶部