ThreadAbortException Encountered

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default ThreadAbortException Encountered

    Hi
    we are getting ThreadAbortException error message on one
    of our .net(1.1) server.
    The error is get displayed in one of .aspx page, which is
    having response.redirect statement, if this page is
    accessed by more than one users simultaneously then error
    is displayed.
    we have tried out following solutions:
    1. The overloaded form of Response.redirect(location,
    False) is implemented
    2.The statement is written within Try and Catch block
    3. we have checked for Inculan Antivirus software.

    PS: This error is coming only on one PC(.net 1.1), we are
    not able to simulate this error on our Test PC.
    what may be the possible cause for this error?
    Naveen Kumar soni Guest

  2. Similar Questions and Discussions

    1. ThreadAbortException
      Just moved my app. to V1.1 on W/2003 using .Net studio 2003... It runs a lengthy process, sending progress output. The web app dies EXACTLY 105...
    2. ThreadAbortException: Thread was aborted exception???
      I've got a WebServices application that uses Crystal Reports to produce and then export Invoices to PDF format. Without getting into too many...
    3. An unhandled exception of type 'System.Threading.ThreadAbortException' occurred in Unknown Module.
      Interesting problem. We have narrowed it down to the exact cause, and would like an explanation of what's going on behind the scenes. Simple bit...
    4. W/2003, VS/2003, SQL2000 and ThreadAbortException
      Moved an app from W/2000 Asp V1.0 to W/2003, VS/2003, ASPV 1.1 Page runs a long job, uploading 2 large fixed length files (300,000 rows) into...
    5. end of file encountered
      I get this error on many psd files backed up on disc, when I try to reopen them. Is there a way to open? What should I do when backing up in the...
  3. #2

    Default Re: ThreadAbortException Encountered

    A Response.Redirect within a Try block should always throw that exception.
    The method does that by definition, if you look at the documentation.

    "Naveen Kumar soni" <kumar.naveen@wipro.com> wrote in message
    news:0a5601c34608$fafe0520$a501280a@phx.gbl...
    > Hi
    > we are getting ThreadAbortException error message on one
    > of our .net(1.1) server.
    > The error is get displayed in one of .aspx page, which is
    > having response.redirect statement, if this page is
    > accessed by more than one users simultaneously then error
    > is displayed.
    > we have tried out following solutions:
    > 1. The overloaded form of Response.redirect(location,
    > False) is implemented
    > 2.The statement is written within Try and Catch block
    > 3. we have checked for Inculan Antivirus software.
    >
    > PS: This error is coming only on one PC(.net 1.1), we are
    > not able to simulate this error on our Test PC.
    > what may be the possible cause for this error?

    Marina Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139