Asp.net 表单中的 AntiForgery 实现
我正在开发一个 httphandler 来处理 Web 表单中的一些请求(不在 MVC 中)。
如何实现反跨站脚本(如 MVC 中的防伪)?
我想了解更多关于MVC中的防伪机制。
I am developing an httphandler to process some requests in Web Forms (NOT in MVC).
How could I implement Anti Cross Site Scripting (like antiforgery in MVC)?
I want to know mre about the antiforgery mechanism in MVC.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以访问该页面,则可以使用 ViewStateUserKey 属性。下面是如何在页面内执行此操作的示例,但您会明白:
虽然 ViewStateUserKey 非常安全,但也存在一些缺点。您可以在此处了解更多相关信息。
If you can access the Page, you can use the ViewStateUserKey property of the Page. Here is an example of how to do this from within the page, but you will get the idea:
While the ViewStateUserKey is pretty safe, there are some short comes with this. You can read more about that here.