Hi all,
fingers crossed this is a quick and easy question.
I'm doing an error control page that attempts to redirect you to your destination every 20 seconds. The error page loads a-okay and redirects when the page is up however if the page is still down i get the diagnose windows connection page. The redirect code is simply:
try
{
Response.Redirect(strUrl);
}
catch
{
//user error message etc
}
What do I need to change for the exceptino to be thrown inside the error page?
Cheers,
Rob
fingers crossed this is a quick and easy question.
I'm doing an error control page that attempts to redirect you to your destination every 20 seconds. The error page loads a-okay and redirects when the page is up however if the page is still down i get the diagnose windows connection page. The redirect code is simply:
try
{
Response.Redirect(strUrl);
}
catch
{
//user error message etc
}
What do I need to change for the exceptino to be thrown inside the error page?
Cheers,
Rob