Thank you,
Florus Hoogendoorn
Once having passed the parameters and values in on the querystring, you can
retrieve them using the QueryString collection of the Request object (which
provides access to information specific to the request, such as querystring
values, form fields, etc.). Here's some sample code that works in either ASP
or ASP.NET:
<%@ Language=VBScript %>
<html>
<head>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
</head>
<body>
<%
Response.Write ("Param1 = " & Request.QueryString("Param1"))
%>
</body>
</html>
Note that for ASP.NET the first line would look more like the following:
<%@ Page Language="vb" AutoEventWireup="false" %>
HTH,
--
G. /\ndrew Duthie
-------------------------------
PLEASE POST ALL FOLLOW-UPS TO THE NG
-------------------------------
"Man will occasionally stumble over the truth, but most times he will pick
himself up and carry on."
Winston Churchill
-------------------------------
"Florus Hoogendoorn" <f.p.hoo...@philips.com> wrote in message
news:953do9$jsm$1...@porthos.nl.uu.net...