how to avoid page refreshing in visual studio .net 2003

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • divyadas
    New Member
    • Aug 2010
    • 2

    how to avoid page refreshing in visual studio .net 2003

    Here am using Autopostback true with drop down lists control
  • divyadas
    New Member
    • Aug 2010
    • 2

    #2
    how to avoid page refreshing in visual studio .net 2003

    how to avoid page refreshing in visual studio .net 2003
    while using autoposback true with dropdown lists

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      You would use Ajax to accomplish this. Ajax lets you do "partial page updates" which means that only a portion of the page is refreshed when the request returns to the browser. Microsoft has provided us with a tool called the UpdatePanel which makes Ajax easy to use in ASP.NET applications. Anything within the UpdatePanel will be refreshed asynchronously so it will seem like the page was refreshed "without posting back to the server".

      I don't think it is possible to do this using Visual Studio 2003(well it's possible but not easy).

      Consider upgrading your Visual Studio to 2008 or above to take advantage of this.

      -Frinny

      Comment

      Working...