asp.net web site error rates

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • DK

    asp.net web site error rates

    I'm looking for information on what others are experiencing with their
    asp.net web sites.

    In February, my site had 1,899,680 requests and there were 3,819 errors.
    That gives us an error rate of about 0.2%

    Most of the errors are:
    The state information is invalid for this page and might be corrupted.
    Validation of viewstate MAC failed.
    Exception of type 'System.Web.Htt pUnhandledExcep tion' was thrown.
    The client disconnected.
    Request timed out.

    thanks.

  • George Ter-Saakov

    #2
    Re: asp.net web site error rates

    From my experience all errors come from "non-defensive" programming.
    Most of them generated by bots...
    there are a lot of bots that submit forms hoping to send an email on
    "contact us" form. Usually those bots change or do not submit viewstate....


    George.

    "DK" <bushido101@hot mail.comwrote in message
    news:87A538A1-931F-479D-A88D-2FBAA48357FE@mi crosoft.com...
    I'm looking for information on what others are experiencing with their
    asp.net web sites.
    >
    In February, my site had 1,899,680 requests and there were 3,819 errors.
    That gives us an error rate of about 0.2%
    >
    Most of the errors are:
    The state information is invalid for this page and might be corrupted.
    Validation of viewstate MAC failed.
    Exception of type 'System.Web.Htt pUnhandledExcep tion' was thrown.
    The client disconnected.
    Request timed out.
    >
    thanks.
    >

    Comment

    • =?Utf-8?B?YnJ1Y2UgYmFya2Vy?=

      #3
      RE: asp.net web site error rates

      you need to decide what is too high. there are 2 common reasons for your error:

      1) asp.net recycled before the postback. every recycle generates a new key
      (unless fixed in the web.config), so people that post after a recycle get
      this message.

      2). your viewstate is too large and proxy servers are truncating it.


      -- bruce (sqlwork.com)


      "DK" wrote:
      I'm looking for information on what others are experiencing with their
      asp.net web sites.
      >
      In February, my site had 1,899,680 requests and there were 3,819 errors.
      That gives us an error rate of about 0.2%
      >
      Most of the errors are:
      The state information is invalid for this page and might be corrupted.
      Validation of viewstate MAC failed.
      Exception of type 'System.Web.Htt pUnhandledExcep tion' was thrown.
      The client disconnected.
      Request timed out.
      >
      thanks.
      >

      Comment

      Working...