Browser refreshing

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

    Browser refreshing

    I have an aspx page that does a postback every 2 minutes. However, some
    browsers are not getting the changed/updated information all the time. The
    application builds 3 GridViews from different datasources (SQL Server). All
    browsers are set to "check for new versions Automatically". Is there
    anything I can do on the aspx page so that all users will get the same
    result? This is an intranet application. Thanks.

    David


  • Alexey Smirnov

    #2
    Re: Browser refreshing

    On Nov 20, 9:03 pm, "David C" <dlch...@lifeti meinc.comwrote:
    I have an aspx page that does a postback every 2 minutes.  However, some
    browsers are not getting the changed/updated information all the time.  The
    application builds 3 GridViews from different datasources (SQL Server).  All
    browsers are set to "check for new versions Automatically". Is there
    anything I can do on the aspx page so that all users will get the same
    result?  This is an intranet application.  Thanks.
    >
    David
    Hi David

    is this about IE6 only?

    If yes, look at the following post
    A broad category of Microsoft tools, languages, and frameworks for software development. Designed to support developers in building, debugging, and deploying applications across various platforms.

    Comment

    • David C

      #3
      Re: Browser refreshing

      Yes, I think so since all problem users have IE6. However, I looked at the
      forum example and I'm not sure how to do what is suggested (use #none in the
      href) as I am using the following Javascript that fires my LinkButton:

      <script language="javas cript" type="text/javascript">
      var dtoday = new Date();
      var day = dtoday.getDay() ;
      //if not Sunday or Saturday then do postback
      if ((parseInt(day) != 0) && (parseInt(day) != 6))
      {
      //Refresh page every 120 seconds - 2 minutes
      window.setTimeo ut("__doPostBac k('LBtnRefresh' , '')", 120000);
      }
      </script>

      Thanks.
      David

      "Alexey Smirnov" <alexey.smirnov @gmail.comwrote in message
      news:7bab2824-b91c-4b6a-81ca-4fd55624d5a1@t1 1g2000yqg.googl egroups.com...
      On Nov 20, 9:03 pm, "David C" <dlch...@lifeti meinc.comwrote:
      I have an aspx page that does a postback every 2 minutes. However, some
      browsers are not getting the changed/updated information all the time. The
      application builds 3 GridViews from different datasources (SQL Server).
      All
      browsers are set to "check for new versions Automatically". Is there
      anything I can do on the aspx page so that all users will get the same
      result? This is an intranet application. Thanks.
      >
      David
      Hi David

      is this about IE6 only?

      If yes, look at the following post
      A broad category of Microsoft tools, languages, and frameworks for software development. Designed to support developers in building, debugging, and deploying applications across various platforms.



      Comment

      Working...