私はこのコードを持っています
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();
}
それはからの例外を与えますResponse.Redirect("Default.aspx");
例:スレッドが中止されていました。
なぜですか?
ありがとう