What means or what happens....
when i transfer the page from one page to another using Response.Redirect("some.aspx",true) or Response.Redirect("some.aspx",false),
I am doing lots of trick to understand it but i am confused also its is hot question in interview.
Loading

Jignesh TrivediPosted Apr 5, 2013, 8:08 AM
Response.Redirect(string url,bool endResponse)
here endResponse is indicates whether execution of the current page should terminate.
when it set to false, page handler is terminate a request for one page and start a new request for another page
when it set to true this method calls the End method for the original request
please refer
http://msdn.microsoft.com/en-us/library/a8wa7sdt.aspx
are you look any more?
Vithal WadjePosted Apr 5, 2013, 6:08 AM
Pankaj RawatPosted Apr 5, 2013, 5:45 AM
Here the Bool Value Represent whether you want to stop the Execution of your Current page and Go to the other page(URL).
Vishal GilbilePosted Apr 5, 2013, 5:35 AM
Refer the following link
http://support.microsoft.com/kb/312063
With Regards,
Vishal Gilbile