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="<form method=get onsubmit=""javascript:window.navigate('" & strUrl & "');return false;"" >Device Currently Active <input type=hidden name=deviceid value=""" & rs("device_id" & """><input type=hidden name=action value=""lockDevice""><input type=submit value=""Lock Device""></form>"
any help would be appreciated!
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="<form method=get onsubmit=""javascript:window.navigate('" & strUrl & "');return false;"" >Device Currently Active <input type=hidden name=deviceid value=""" & rs("device_id" & """><input type=hidden name=action value=""lockDevice""><input type=submit value=""Lock Device""></form>"
any help would be appreciated!