ASP.net: Remove flickering on page.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vinci
    New Member
    • Aug 2006
    • 62

    ASP.net: Remove flickering on page.

    Guys,

    Is it possible to remove flickering on page.

    This is the situation...

    I have a page on which i placed an event onkeydown (monitors the enter key) on which it executes a script that forces the click event on a button.

    Now, every time i hit the enter key, the click event of the button works but the page flickers and i dont want that to happen. how can i remove the flickering if it is possible...

    thanks...
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    The page flicker is the postback to the server. You can use an AJAX Update Panel to do a partial page postback to avoid the flicker. The other option is to use javascript to post to the server.

    Nathan

    Comment

    Working...