IsCrossPagePostback–pass data from one page to another
Hello friends again with new concept.. Page.IsCrossPagePostBack in many case we are supposed to pass data from one page to another page. So we can pass data through Querystring , Session variables , this options are quiet helpful when Data is less in quantity.. but now what if we want whole page to another page… ? and in previous page Data is in very big amount around 20 – 40 fields… so it is not feasible to pass that data in querystring or storing all data in session. there also another ways, like Cookie or hiddenfields using Post method.. but all this require more trouble.. but what if we get previous page controls like it is “on same page” for that we have a good option called IsCrossPagePostback it is same like our Page.IsPostBack . Page.IsPostBack treats only for current page’s postback but to track weather postback is from Current page or previous page we can use IsCrossPagePostBack. One Important Note : Respose. Redirect will not help us to track ...