Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Auto submit form value and redirect page.

Status
Not open for further replies.

cleanair4me46

Technical User
Feb 3, 2009
41
US
I would like to automatically submit a form value everytime a page is viewed and then automatically redirect.

The below doesnt submit anything and I am not sure how to redirect. Please advise.

Code:
<SCRIPT LANGUAGE="JavaScript">
function fnSubmit() {
  window.document.mypage.form.submit();
  return;
}
</SCRIPT>

<body onload="fnSubmit()">
<form action="goToPage.jsp" name="mypage" method="post">
<input type="hidden" name="mydata"  value="myvalue">
<input type="submit">
</form>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top