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
 
Typically, you would use Server.Transfer instead of posting a form.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Neither a follower nor a lender be.
 
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.
 
Thomas,
Can you please give us more info on how you did it
Thank you
 
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.
 

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