Post ASP.Net Form data to another page
- by william
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?