Response.Redirect ("Sign.aspx", false);

Do I need to set the second parameter to false. If so, why? if not, why?

I read it from Google, but I can’t understand ... Any exact answer would be appreciated

How can we use one parameter also

+4
source share
1 answer

you can use only one parameter as a url or use trueas a second parameter, but in some cases it does System.Threading.ThreadAbortException. Response.Redirect(string URL,true)do response.End()automatically and stop the page process.

false , , , . , false return; response.redirect.

+5

All Articles