From my firstpage.asp i send this value to nextpage.asp
<a href ="nextpage.asp?file=server01.txt">
in my nextpage.asp i need to invoke this variable into a filepath using Request.QueryString("file"
.
servername = Request.QueryString("file"
.
So in my path i need to use the variable sent from firstpage.asp in the filepath. It should then look like this C:\Inetpub\ , with the variable servername used in the filepath
how do I get the servername into the filepath?
<a href ="nextpage.asp?file=server01.txt">
in my nextpage.asp i need to invoke this variable into a filepath using Request.QueryString("file"
servername = Request.QueryString("file"
So in my path i need to use the variable sent from firstpage.asp in the filepath. It should then look like this C:\Inetpub\ , with the variable servername used in the filepath
how do I get the servername into the filepath?