I don't want the thread abort exception when i use response.redirect method inside try catch block . I give end response is true. Is there any possible way instead of throws thread exception. The page is redirected the login page.
This is my code,
 try
    {
        Response.Redirect("login.aspx?fromLnkPg=1", true);
    }
    catch (Exception ex)
    {
        Response.Write(ex.Message.ToString());
    }
 
     
     
     
    