I’m trying to write ASP for the first time, I’ve only been using PHP for some years and never really got in to ASP. What I want to do is to get a value from the URLs get. For instance the url is like: page.asp?id=1
Then I want this value to be in an include like:
<!--#include file="somepage_$_GET[id].html"-->
How can this be achieved through ASP?
Peace
The equialent term for
$_GET['id']in PHP is in ASPRequest.QueryString("id")if you per say are usingidas your term.