如何在页面之间传递 asp.net 会话令牌?
在页面之间传递 ASP.NET 会话令牌的最佳且安全的方法。 1. cookie(不安全) 2. url(不安全) 3.隐藏字段? 使用隐藏字段是正确的传递方式吗? 如何使用隐藏文件传递? 如何禁用 cookie 和 url(会话状态配置)中的会话令牌?
best and secured way to pass the asp.net session token from page to page.
1. cookies (not secured)
2. url (not secured)
3. hidden fields ?
using hidded fields is right way to pass ?
how to pass using hidded fileds?
how to disble the session token in cookies and also in url (session state conguration)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从我对类似问题的回答来看,“保护 ASP .NET 在客户端形成身份验证令牌?":
会话:
为您的 Web 应用程序提供快速、可扩展且安全的会话状态管理
From my answer for similar question, "securing ASP.NET forms authentication token on client side?" :
Session:
Fast, Scalable, and Secure Session State Management for Your Web Applications