only refresh image button without page reloading

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sajankonni
    New Member
    • Dec 2009
    • 1

    only refresh image button without page reloading

    i want to refresh image buttons in asp.net,only without reloading the entire page.
    Last edited by sajankonni; Dec 28 '09, 05:30 AM. Reason: including asp.net
  • ThatThatGuy
    Recognized Expert Contributor
    • Jul 2009
    • 453

    #2
    Change it via javascript

    if the image button name is imgIcon then on client place it will hopefully be named as ctl00_imgIcon so do it via the javascript..... ..

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      To do this you'll need to use an UpdatePanel.
      UpdatePanels use Ajax to refresh the content within it without refreshing the entire page.

      -Frinny

      Comment

      Working...