我如何验证 .aspx 页面中的 html 控件
我如何验证 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦 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