Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个需要通过用户 ID 的 Web 应用程序
上一页的网址是
http://app1.faceicicle.com/admin/entryAction.do?action=first&locale=&sessionID=5q2m04k9c5362p50b17b63p53679jx25&login=8121support&prjLinkURL=&moduelType=&reminderLink=&toModule=&toProject=
如何获取用户 ID、会话 ID 或密码的值?
您可以通过访问响应对象的查询字符串属性来访问此类参数
Request.QueryString;
例如,查看文档
但是,从安全角度来看,您可能希望以表单而不是 url 参数的形式传递用户 ID 和密码