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

passing parameters between ASPs - please help!!!

Status
Not open for further replies.

cm80

Technical User
May 3, 2001
85
US
I have a self submitting form with a parameter being passed back into the same ASP. i want this same parameter to also be passed to another ASP, is this possible?

this is what i have so far but i want to pass the 'action' parameter to another ASP as well as deviceHistory

strUrl = "deviceHistory.asp?action=lockDevice&deviceID=" & rs("device_id")

devLock=&quot;<form method=get onsubmit=&quot;&quot;javascript:window.navigate('&quot; & strUrl & &quot;');return false;&quot;&quot; >Device Currently Active <input type=hidden name=deviceid value=&quot;&quot;&quot; & rs(&quot;device_id&quot;) & &quot;&quot;&quot;><input type=hidden name=action value=&quot;&quot;lockDevice&quot;&quot;><input type=submit value=&quot;&quot;Lock Device&quot;&quot;></form>&quot;


any help would be appreciated!
 

cm80,

You will need somewhere in your ASP

lockdevice = request.querystring(&quot;lockDevice&quot;)
deviceID = request.querystring(&quot;deviceID&quot;)

Fengshui1998

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top