Post ASP.Net Form data to another page

Posted by william on Stack Overflow See other posts from Stack Overflow or by william
Published on 2012-06-22T01:51:14Z Indexed on 2012/06/22 3:16 UTC
Read the original article Hit count: 295

Filed under:
|
|
|

I have an ASP.Net Page, aspx with its default form.

I have a Submit Button for it. Upon clicking, it will post the data to itself. In other words, Button Click Event() from code behind will execute the necessary.

After that, I would like to post the same data to another ASp.Net Page, aspx from another domain.

So, how can I do it?

I tried creating a Form in Button Click Event and a javascript to Submit the Form so that it will post. But the Form is not appearing hence there is already aForm` on the page.

Is there anyway to do it?

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET