I have this code
protected void Button_Click(object sender, EventArgs e)
{
    try
    {
        // some code
        con.Open();
        string result = command.ExecuteScalar().ToString();
        if (result != string.Empty)
        {
             // some code
             Response.Redirect("Default.aspx");
        }
    }
    catch (Exception ex)
    {
        throw new Exception(ex.Message);
    }
    finally
    {
        con.Close();
    }
It gives an exception from Response.Redirect("Default.aspx");
ex: Thread was being aborted.
any idea why?
thanx
 
     
     
    