Handle user auto-repeating refresh in browser

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

  1. #1

    Default Re: Handle user auto-repeating refresh in browser

    Why would your users keep their finger on F5???

    Thats like saying how do I disable Ctrl-Alt-Del so users won't accidently
    restart their system...

    Jordan

    "Neil Kimber" <neil.kimber@flytxt.com> wrote in message
    news:O9V9sYpVDHA.1832@TK2MSFTNGP09.phx.gbl...
    > If I create a test page, run it and press F5 (refresh) and leave my finger
    > on the F5 button, eventually the browser hangs and stops responding.
    Either
    > this is IIS hanging or the IE. In either case, what is the best approach
    for
    > handling mischevious users who leave their finger on F5?
    >
    > Regards,
    > Neil
    >
    >

    Jordan Marton Guest

  2. Similar Questions and Discussions

    1. How to handle browser refresh and DB insert
      Any ideas on how to accomplish the following: I have a search page that inserts user's search terms into a database so I can return "The Top Ten...
    2. Auto Refresh code that doesn't take the user back to thetop of the page
      Hi, Does anyone have code that will auto-refresh the page, but keep the user at the current location on the page. I have some code I put in the...
    3. How to Handle Primary Key Auto Increment?
      Hello, I'm needing some guidance with primary key generation. Oracle 8i db, I've got a table (PC) that uses unique numbers for the pk. Currently,...
    4. Auto-enter for repeating fields
      Is there a way to auto-enter values for repeating fields? I have a field that repeats 4 times, each one I want a value in it when I create a new...
    5. Auto refresh asp
      Hi All, I want to refresh a page every 5 mins without the users' intervention. I'm not sure that this is possible at all. Do you? Thanks...
  3. #2

    Default Re: Handle user auto-repeating refresh in browser

    Well, they may want to swamp my webserver with requests if they are
    malicious. In effect, I'm asking what different strategies work best for DoS
    attacks.

    "Jordan Marton" <JMarton@HAHAmarketaxess.com> wrote in message
    news:eFxGVfpVDHA.3332@tk2msftngp13.phx.gbl...
    > Why would your users keep their finger on F5???
    >
    > Thats like saying how do I disable Ctrl-Alt-Del so users won't accidently
    > restart their system...
    >
    > Jordan
    >
    > "Neil Kimber" <neil.kimber@flytxt.com> wrote in message
    > news:O9V9sYpVDHA.1832@TK2MSFTNGP09.phx.gbl...
    > > If I create a test page, run it and press F5 (refresh) and leave my
    finger
    > > on the F5 button, eventually the browser hangs and stops responding.
    > Either
    > > this is IIS hanging or the IE. In either case, what is the best approach
    > for
    > > handling mischevious users who leave their finger on F5?
    > >
    > > Regards,
    > > Neil
    > >
    > >
    >
    >

    Neil Kimber Guest

  4. #3

    Default Re: Handle user auto-repeating refresh in browser

    Hello Neil,

    Thanks for posting here.

    When we install VS.NET on the system, it will install one tool named Microsoft Application Center Test. By using this tool, we
    can simular milllions of web request. However, I don't observer IIS hangs when using it. So I think the hang that you observed
    should happen on client side, not server side.

    Besides, in order to prevent Dos attack, we could do some actions in server side. For an example, revising
    MaxClientRequestBuffer registry value in IIS server machine. Please refer to "Description of the MaxClientRequestBuffer
    Registry Value"
    [url]http://support.microsoft.com:80/support/kb/articles/q260/6/94.asp[/url]

    You could also protect web server in firewall level. Please refer to [url]http://www.toplayer.com/content/resource/faq.jsp[/url] for
    some ideas in this area.

    Did I answer your question?

    Best regards,
    Yanhong Huang
    Microsoft Online Partner Support

    Get Secure! - [url]www.microsoft.com/security[/url]
    This posting is provided "AS IS" with no warranties, and confers no rights.

    --------------------
    !Reply-To: "Neil Kimber" <neil.kimber@flytxt.com>
    !From: "Neil Kimber" <neil.kimber@flytxt.com>
    !References: <O9V9sYpVDHA.1832@TK2MSFTNGP09.phx.gbl> <eFxGVfpVDHA.3332@tk2msftngp13.phx.gbl>
    !Subject: Re: Handle user auto-repeating refresh in browser
    !Date: Wed, 30 Jul 2003 13:47:47 +0100
    !Lines: 31
    !Organization: Flytxt
    !X-Priority: 3
    !X-MSMail-Priority: Normal
    !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    !Message-ID: <#f6ZJjpVDHA.2016@TK2MSFTNGP09.phx.gbl>
    !Newsgroups: microsoft.public.dotnet.framework.aspnet
    !NNTP-Posting-Host: 212.161.95.49
    !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
    !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163341
    !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
    !
    !Well, they may want to swamp my webserver with requests if they are
    !malicious. In effect, I'm asking what different strategies work best for DoS
    !attacks.
    !
    !"Jordan Marton" <JMarton@HAHAmarketaxess.com> wrote in message
    !news:eFxGVfpVDHA.3332@tk2msftngp13.phx.gbl...
    !> Why would your users keep their finger on F5???
    !>
    !> Thats like saying how do I disable Ctrl-Alt-Del so users won't accidently
    !> restart their system...
    !>
    !> Jordan
    !>
    !> "Neil Kimber" <neil.kimber@flytxt.com> wrote in message
    !> news:O9V9sYpVDHA.1832@TK2MSFTNGP09.phx.gbl...
    !> > If I create a test page, run it and press F5 (refresh) and leave my
    !finger
    !> > on the F5 button, eventually the browser hangs and stops responding.
    !> Either
    !> > this is IIS hanging or the IE. In either case, what is the best approach
    !> for
    !> > handling mischevious users who leave their finger on F5?
    !> >
    !> > Regards,
    !> > Neil
    !> >
    !> >
    !>
    !>
    !
    !
    !


    Yan-Hong Huang[MSFT] 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