Application not working
-
Hi all, My asp.net application is not working in mozilla firefox, But it is working perfectly in IE6. when i click on login button it is giving password wrong,if i run it on IE,login is successful. I have some javascript code in my source page of the login page. What might be the reason for this> I have tested it in linux o.s with mozilla. Can any body respond to this?
kissy
-
Hi all, My asp.net application is not working in mozilla firefox, But it is working perfectly in IE6. when i click on login button it is giving password wrong,if i run it on IE,login is successful. I have some javascript code in my source page of the login page. What might be the reason for this> I have tested it in linux o.s with mozilla. Can any body respond to this?
kissy
Kissy16 wrote:
I have some javascript code in my source page of the login page.
I guess you are getting some problem with javascript. Please show us the javascript code.
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you. View My Latest Article
-
Kissy16 wrote:
I have some javascript code in my source page of the login page.
I guess you are getting some problem with javascript. Please show us the javascript code.
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you. View My Latest Article
Below script am using for password encryption function sendData(salt) { //var FORM = document.form[0]; if (document.forms[0].DDL_Distname.value == "Select District") { alert("plz enter user name."); return false; } if (document.forms[0].Txt_password.value != "") { document.forms[0].Txt_password.value = hex_md5(document.forms[0].Txt_password.value); document.forms[0].Txt_password.value = hex_md5(salt+document.forms[0].Txt_password.value); } else { alert("plz enter password."); return false; } return true; } </script> <script language="javascript" type="text/javascript"> window.history.forward(1); </script>
kissy