hi
I want to submit the form and click the link on body load event. i m using the following code:
<script>
Function clicklinl()
{
document.getEle mentById("back" ).click();
}
</script>
<html>
<body onLoad="test.su bmit();clicklim k()" >
<form name="test" action="test.vb s">
<a id="back" href="RDPServer List.asp">back</a>
</form>
</body>
</html>
I want to run firstly test.vbs file and then come back to RDPServerList.a sp page.
here form is submitted i.e. vbs file starts executing but link is not clicked.
can anyone help me in this issue.
thanks in advance.
anu
I want to submit the form and click the link on body load event. i m using the following code:
<script>
Function clicklinl()
{
document.getEle mentById("back" ).click();
}
</script>
<html>
<body onLoad="test.su bmit();clicklim k()" >
<form name="test" action="test.vb s">
<a id="back" href="RDPServer List.asp">back</a>
</form>
</body>
</html>
I want to run firstly test.vbs file and then come back to RDPServerList.a sp page.
here form is submitted i.e. vbs file starts executing but link is not clicked.
can anyone help me in this issue.
thanks in advance.
anu
Comment