使用第三方 javascript 库的 ASP.NET 表单身份验证
我有一个网站,目前使用 ASP.NET 的内置身份验证、配置文件和角色管理。 我想使用第三方 javascript 库(如 JQuery 或 Mootools)将一些功能(包括身份验证)移至客户端,而不使用 ScriptManager 和生成的代理类。
关于这个主题的信息非常有限,但我设法找到这篇文章,它创建了一个与 SilverLight 应用程序一起使用的 WCF 身份验证端点。 我找不到任何有关如何将 WCF 身份验证端点与第三方 javascript 库和 JSON 结合使用的信息。
如果您有任何链接或信息,请告诉我。
谢谢
I have a website where I currently use ASP.NET's built in Authentication, profile and role management. I would like to move some functionality (including authentication) to the client side using a third party javascript library like JQuery or Mootools without the use of ScriptManager and generated proxy classes.
There is very limited information on this topic but I managed to find this article which creates a WCF authentication end point to use with a SilverLight application. I can't find any information on how to use a WCF authentication end point with a third party javascript library and JSON.
If you have any links or information, please let me know.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能正在努力寻找这方面的资源,因为将身份验证控制放在客户端并不安全。
您想要这样做的原因是什么?
You're probably struggling with finding resources for this because putting your authentication control on the client side is just not safe.
What are your reasons for wanting to do this?
谢谢你的回复。
您可能是对的,但我在很多网站上都看到了此功能。 我基本上允许您从任何页面登录您的帐户,而无需离开它。
我发现 文章介绍如何通过在代码中添加 scriptmanager 服务器标记来实现此目的。 但是,如果可能的话,我希望远离任何自动生成的代理类,并使用 JSON 来完成此操作。
Thanks for you reply.
You are probably right but I see this functionality on a lot of websites. I basically allows you to sing in to your account from any page without navigating away from it.
I found an article on how to accomplish this by adding a scriptmanager server tag in the code. However, I want to stay away from any automatically generated proxy classes if possible and accomplish this using JSON.