编辑模式下gridview中密码栏显示密码char *
我有一个网络表单网格视图。其中一列是密码。我想允许用户更改密码。问题很少。
在编辑模板中,我提到密码列 TextMode 作为密码。所以当我点击编辑按钮时它显示空白。
因此,当我单击编辑模式时,密码列应显示密码掩码字符“*”,如果用户更改密码,则应在数据库上更新密码。
我对密码使用 SHA1 加密所以我认为我可以从数据库检索密码值并将其保留在首页上不会有任何安全问题。
I have a webform gridview. In that one columns is password. I want to allow the users to change the password. there are few issues.
In the Edit template I have mentioned the password column TextMode as Password. So it shows blank when I click on the edit button.
So when I click on the edit mode the password column should display the password mask characters '*' and if the user changes the password it should be updated on the database.
I am using the SHA1 encryption for the password so I think I can retrive the password value from the db and keep it on the frontpage won't be any security issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最后我用 jQuery 找到了这个问题的解决方案。
可能对某人有用。
Finally I found a solution for this issue with jQuery.
May be useful to someone.
EditItemTemplate 内的 TextBox。然后尝试将 value 属性添加到 TextBox,如下所示。
希望这个工作!!!!
TextBox inside EditItemTemplate.Then try to add the value attribute to TextBox like below.
Hope This Work !!!!