In Asp.net By default,asp.net Web form submits a form to the same page.Cross-Page Posting in ASP.NET Web Forms. By default, on an ASP.NET Web Forms page, buttons and other controls that cause a postback submit the page back to itself. In cross-page posting, the form is submitted to a different page.
This is done by setting the ‘PostBackUrl’ property of the button causes postback to the desired page. In the code-behind of the page to which the form has been posted, use the ‘FindControl’method of the ‘PreviousPage’ property to reference the data of the control in the first page.
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
In Asp.net By default,asp.net Web form submits a form to the same page.Cross-Page Posting in ASP.NET Web Forms. By default, on an ASP.NET Web Forms page, buttons and other controls that cause a postback submit the page back to itself. In cross-page posting, the form is submitted to a different page.
This is done by setting the ‘PostBackUrl’ property of the button causes postback to the desired page. In the code-behind of the page to which the form has been posted, use the ‘FindControl’method of the ‘PreviousPage’ property to reference the data of the control in the first page.