form post and rediirect

  • Thread starter Thread starter Thomas Kirk
  • Start date Start date
T

Thomas Kirk

I was wondering how I would do a form post from one ASP.Net webform to
another webform in another ASP.Net application. I have tried this using the
httprequest object but the 2nd webform is never displayed in the browser.
Has anybody ever done this before?

Thanks in Advance,
Thomas Kirk
 
No, it won't. In that case, you need to insert a regular HTML form in the
Page. A WebForm always posts back to itself.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Neither a follower nor a lender be.
 
To a WebForm outside of the current app domain? That would be a trick. It
could be done with Web Services, though, now that I think aobut it again.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Neither a follower nor a lender be.
 
False alarm. It only appeared to be working. I am still not able to transfer
values to a different application.
 
Back
Top