Passing Information between two ASPX applications

  • Thread starter Thread starter A Ward
  • Start date Start date
A

A Ward

I am trying to find a way to have multiple seperate ASP.Net applications
where I can response.redirect() to a second web application and pass
information. From what I have tried:

* HTTP-GET - I need to pass more information than I can fit in the address
string
* HTTP-POST - Can't find a way to read them from ASPX
* Session Variables aren't persistent across applications (that I have been
successful with)

Is there a documented way to do this? Every example I find for passing
information is limited to being inside the same application. This seems
like it should be simple but the solution is eluding me.
 
Web Service?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
DB... DB....DB.....
Write em, pass the id, read the id, read the data.

Curt
 
if you can not share a database key, then redirect to a page with hidden
fields containing the data, then in client code post to the second location

<form id=foo runat=server>
</form>
<script>
document.forms[0].action = "http://mysecondsite/";
document.forms[0].submit();
</script>

in the code behind write out the hidden values.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top