I use below source code in my script.
I worked fine with Crome Browser.
but didn't work with Internet Explorer.
How can I do?
somebody help me please.
<!DOCTYPE html>
<html>
<head>
<title></title>
<script language="JavaScript">
<!--
function login() {
document.form1.action="http://website.com/login/login.asp";
document.form1.submit();
}
//-->
</script>
</head>
<body onload="login()">
<form method=post name="form1" id="form1">
<input type="hidden" name="ID_Text" value="abcd">
<input type="hidden" name="PW_Text" value="abcd">
</form>
</body>
</html>