S
Stan
This code has been working for a long time:
try
{
Server.Transfer ("Order.aspx");
}
catch (Exception ex)
{
///
}
Now, all of the sudden, the page started generating "Thread aborted" error
message.
Here is what I found -
1) the exception occurs on the main page after Server.Transfer
2) If I comment out try / catch block (!!!) it works fine (!)
I tried to do Server.Transfer ("Order.aspx", true) or Server.Transfer
("Order.aspx", false) - same result.
Why in the world it would do that?
Thanks,
-Stan
try
{
Server.Transfer ("Order.aspx");
}
catch (Exception ex)
{
///
}
Now, all of the sudden, the page started generating "Thread aborted" error
message.
Here is what I found -
1) the exception occurs on the main page after Server.Transfer
2) If I comment out try / catch block (!!!) it works fine (!)
I tried to do Server.Transfer ("Order.aspx", true) or Server.Transfer
("Order.aspx", false) - same result.
Why in the world it would do that?
Thanks,
-Stan