0

I need to submit the form to another web application.

I have hosted 2 websites in my IIS. In website1 I have a page "Register.aspx" and I set PostBackUrl for the submit button to a page(Receiver.aspx) in website2. But I couldn't get the posted values in Receiver.aspx. If I set the PostBack url to a page which is in website1, I could get the posted values using Request.Form["tbUserName"]. Please suggest me.

Jason Evans
  • 28,906
  • 14
  • 90
  • 154
Tamil
  • 68
  • 9

1 Answers1

0

I found the cause. The problem is I set Cookieless="true" in website2, if I set it to UseCookies it works fine.

Tamil
  • 68
  • 9