---
title: "Explain Cross Page Posting? How is it done?"  
description: "Explain Cross Page Posting? How is it done?"  
author: "Manish Kumar"  
published: 2017-06-23  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/23271/explain-cross-page-posting-how-is-it-done  
category: "c#"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Explain Cross Page Posting? How is it done?

1- By default, the form is submitted on the same page by ASP.Net.

2- In cross-page posting, the form is submitted to another page.

3-We can achieve this by giving the particular page url to the PostBackUrl property of a submit button.

4- We can use the FindControl method of the PreviousPage property to fetch the details of the control of the first page in the code behind of the page of PostBackUrl.

## Answers

### Answer by Manish Kumar

1- By default, the form is submitted on the same page by ASP.Net.

2- In cross-page posting, the form is submitted to another page.

3-We can achieve this by giving the particular page url to the PostBackUrl property of a submit button.

4- We can use the FindControl method of the PreviousPage property to fetch the details of the control of the first page in the code behind of the page of PostBackUrl.


---

Original Source: https://www.mindstick.com/interview/23271/explain-cross-page-posting-how-is-it-done

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
