我如何验证 .aspx 页面中的 html 控件

发布于 2024-12-06 23:14:24 字数 236 浏览 1 评论 0原文

我如何验证 .aspx 页面中的 html 控件。

例如。我有两个标签 :: lblusername 和 lblpassowrd,两个用于从用户获取值的文本框和一个提交按钮。 我希望所有这些控件都是 html 控件而不是 asp.net 服务器端控件,验证密码是否已存在,检查密码字符串是否正确,然后在提交时为用户提供主页。 任何代码对此有帮助。 还期望对触发的事件、对 ASP.NET 页面生命周期的影响以及对性能的一些见解进行一些讨论。

how can i authenticate an html control in a .aspx page.

For eg. I have two labels :: lblusername and lblpassowrd, two textboxes to fetch the values from the user and a submit button.
I want all these controls to be of html controls not the asp.net server side controls, authenticate whether the password already exists, check for password string to be ok and on submit give user the home page.
any code help for this.
would also expect some discussion on the events fired, effect on the asp.net page life cycle and some insight about the performance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信仰 2024-12-13 23:14:24

一旦 HTML 控件具有 runat="server" 属性,您只需使用正常的 ASP.NET 方式进行身份验证和授权。

http://msdn.microsoft.com/en-us/library/ms178329.aspx

http://msdn.microsoft.com/en-us/library/f8kdafb5%28VS.71%29.aspx

Once the HTML controls have the runat="server" attribute, you just use the normal ASP.NET way of authenticating and authorizing.

http://msdn.microsoft.com/en-us/library/ms178329.aspx

http://msdn.microsoft.com/en-us/library/f8kdafb5%28VS.71%29.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文