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.
Finally I found a solution for this issue with jQuery.
May be useful to someone.