locked
Submit form using post method RRS feed

  • Question

  • User746671234 posted

    Hello I'm submitting my form using

    <form action="mypage.aspx" method="post" >

    Now On mypage.aspx

    I check all the details 

    Now I've to return result back to my mainpage.aspx form and show result in the div how to do this.?

    Tuesday, September 13, 2016 9:22 PM

Answers

  • User1724605321 posted

    Hi ,

    After you check the result , you could Add a button control to your Web Forms page, such as a Button, LinkButton, or ImageButton control ,then set the PostBackUrl property for the control to the URL of the page to which you want to post the ASP.NET Web Forms page. Also refer to below article :

    https://msdn.microsoft.com/en-us/library/540y83hx.aspx 

    Best Regards,

    Nan Yu

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Wednesday, September 14, 2016 8:53 AM