Hi
In ASP.Net 2.0 we can use the cross page post back to post to a different page. We can also get the same effect by using the Server.Transfer method. You can look at this
post of mine to see how to work around with cross page post back.
But we cannot use cross page post back at every situation. There are some disadvantages of using cross page post back at some situation especially validation.
If we have disabled the client side validation for our controls then the page will post back without any validation. Even if the validation is not turned off, we can’t always use validation on the client (some custom validation controls will only be able to validate servers-side), nor can we always trust the client to perform validation.
Server side validation presents a problem for cross page post backs because our response will come from the destination web form instead of the original web form where the user failed validation. When we inspect the