Link to home
Start Free TrialLog in
Avatar of geoffsweb
geoffsweb

asked on

Passing web variable to other applications

Is it possible to pass a variable from one web page to another, when it is a separate application?  I have a web aplication that uses a file manager, that is a separate web application.  I now have the need to pass this separate file manager application a variable from my original web application.  Is this possible in .NET ?

Thanks in advance.
Avatar of riyazthad
riyazthad

You can use Querystring.

suppose you have ID variable in WebApplication1 and u can call appln 2 using
http://Webapplication2/Page1.aspx?Id=100

Thad
ASKER CERTIFIED SOLUTION
Avatar of Dimandja
Dimandja
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The link I provided details how information can be passed from one web page to another.  This question was fully answered.