Screen Flicker even with AJAX

  • Thread starter Thread starter Bobby Edward
  • Start date Start date
B

Bobby Edward

I have a hyperlink on a master page. When pressed it redirects to an aspx
page which simply runs code (no UI) then returns to the same page. (All
occurs behind the scenes.)

The page is AJAXed with an update panel etc... Can I get rid of the
'flicker'? Or does there have to be one because it temporarily redirects to
another page so that the code is run?

Thanks...
 
Good point Mark. Let me try a class instead...

You are always of great help. Thanks alot! ;)
 
your hyperlink is not doing an ajax postback, thus the flicker. you should
tie javascript event to the link, then do a webservice call. if you dont;
know how to code this, create an update panel with just a linkbutton in it as
a trigger (overkill but will work).

-- bruce (sqlwork.com)
 
Back
Top