What is Cross Page Posting? How is it done?
2164
14-Mar-2018
Anonymous User
14-Mar-2018In 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.