screen flicker

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey all,

I have an asp.net app with a button on it. When a user clicks that button, the object calls a javascript:windowOpen(). The window comes up fine however, the window with a button acts like it refreshes for some reason. Any ideas why this might be?

thanks in advance,
ari
 
you're in the wrong group...
it should be: microsoft.public.dotnet.framework.aspnet

When you click on the button, you do a postback to the server.
Your aspx application can then do something and show the results on that
same page.
The user will see a reload of the page as the HTML is rebuild and sent to
the user.

One way to get rid of the flickering is to use smartnavigation, but it only
works on IE and is not 100% bug-proof!

rg,
Eric



ari said:
Hey all,

I have an asp.net app with a button on it. When a user clicks that button,
the object calls a javascript:windowOpen(). The window comes up fine
however, the window with a button acts like it refreshes for some reason.
Any ideas why this might be?
 
Back
Top