Tagged Questions

3
votes
5answers
1k views

When an ASP.NET System.Web.HttpResponse.End() is called, the current thread is aborted?

Hi folks, when a System.Web.HttpResponse.End() is called a System.Thread.Abort is being fired, which i'm guessing is (or fires) an exception? I've got some logging and this is being listed in the log …
1
vote
3answers
1k views

SqlClient calls causing “Thread was being aborted at SNINativeMethodWrapper.SNIPacketGetConnection(IntPtr packet)”

I would really appreciate any suggestions, no matter how simple or complex, to help me get this issue isolated and resolved. I have a bit of code that generates small report files. For each file in …
2
votes
8answers
914 views

How do I suppress a thread.abort() error C# ?

I am showing a splash screen on a background thread while my program loads. Once it loads I am aborting the Thread as it's only purpose was to show a Now Loading splash form. My problem is that …