Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can You Pass a Parm Value to Another ASP ?

Status
Not open for further replies.

JohnBates

MIS
Feb 27, 2000
1,995
US
Hello ASP people !

In ASP, the term parameter has a different meaning than in most other programmming languages....

I'm trying to enable 2 applications to 'share' this ASP. So the shared ASP needs to know which app is running it.

So I want to pass a text string when I redirect to the ASP. Is this possible?

If not, I'll probably have to just reference a variable.

Thanks for your tips. John
 
Just pass it in your querystring:

response.redirect("somePage.asp?user=page1")

or

response.redirect("somePage.asp?user=page2")
penny1.gif
penny1.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top