Reply to Re: Passing variables from a PHP page to an ASP page?
Posted by shabbir.bharmal on 12/07/05 20:04
you can pass variables by using query string
http://othersite.com/otherscript.asp?user=FayeC to asp page and then
over then you can retrieve it by either:
u=request('user')
or
u=request.querystring('user')