Hi all
I am encrypting a password on client side. I want to access it before encryption. How to do that. Below is my code, how I am encrypting the password.
<script type="text/javascript" src="../js/md5.js"></script>
<script type="text/javascript">
function GeneratePwd() {
if (document.getElementById("txtpassword").value != "")
{
document.getElementById("txtDistance").value = document.getElementById("txtpassword").value;
document.getElementById("txtpassword").value = hex_md5(document.getElementById("txtpassword").value);
}
}
</script>
aspx
<asp:TextBox ID="txtpassword" runat="server" CssClass="mytext ...
Go to the complete details ...