手机端的用户名如何传递到其他页面:
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