34.

 

What type of exception will be thrown in the code below:

try
{ 
    Response.Redirect("home.aspx");
}
catch()
{
}

As the normal execution of Response.Redirect will abort the current running thread and then route the request on another request. So when you have Response.Redirect() within a try-catch block that catches all exceptions the catch block will catch the ThreadAbortException.