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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing variables with querystring

Status
Not open for further replies.

dtran

Programmer
Joined
Jun 25, 2001
Messages
29
Location
US
Hi all,
I'm trying to pass a variable from one page to another and got stuck. When I get to the next page I can only get the name of the variable not the value of the variable. Any help with the following would be great.

function nextPage(myVar)
{
document.form.action = "NewPage.asp?Name=myVar";
document.form.submit()
}
 
function nextPage(myVar)
{
document.form.action = "NewPage.asp?Name=" + myVar;
document.form.submit()
} - tleish
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top