W
Wayne
I have code that Posts Form values to another page.
I am using a Try Catch Finally to handle thrown exceptions from our core
logic.
The problem is if everything is successful it Posts the page, the post has
to run inside the try catch statement; however, I get a ThreadException when
it trys to post and it just stops everything (no post).
BTW, this code works great if it is not in a try catch statement.
Is there a way I can stop monitoring of the thread and let everything else
continue to run?
I have tried the following and it does not work.
System.Threading.Thread.CurrentThread.ResetAbort
System.Threading.Thread.CurrentThread.Abort
System.Threading.Thread.CurrentThread.Suspend
System.Threading.Thread.CurrentThread.Sleep
Thanks!
-Wayne
I am using a Try Catch Finally to handle thrown exceptions from our core
logic.
The problem is if everything is successful it Posts the page, the post has
to run inside the try catch statement; however, I get a ThreadException when
it trys to post and it just stops everything (no post).
BTW, this code works great if it is not in a try catch statement.
Is there a way I can stop monitoring of the thread and let everything else
continue to run?
I have tried the following and it does not work.
System.Threading.Thread.CurrentThread.ResetAbort
System.Threading.Thread.CurrentThread.Abort
System.Threading.Thread.CurrentThread.Suspend
System.Threading.Thread.CurrentThread.Sleep
Thanks!
-Wayne