Showing posts with label loads. Show all posts
Showing posts with label loads. Show all posts

Saturday, March 24, 2012

My only AJAXified page is flashing when it loads

AJAX Programmers,
I have finally deployed a cascading drop down control from the ajax control tool kit to my live site. Right now it is the only ajax control on my newly ajaxified site, but I can't help but notice that this is the only page that flashes when it loads. Seewww.legislature.mi.gov/mileg.aspx?page=SponsorSearch for an example of this. Does this seem normal to you who are experience ajax programmers? I'm getting ready to apply some other ajax contols, but I fear those persons overseeing this site may frown upon this flashing effect. Does it seem like I may be doing something wrong?
Thanks,
Jenny

If you could post some of the code for the page it might help in identifying if there is some change that needs to take place or if it is an issue with AJAX.NET

What seems to be happening is that the flash occurs because the background is loaded first and then the page content vice on your other pages the content will get loaded and then the background will get populated.


I've seen your drop down control and it seems fine.
The control disables when it's data is being refreshed and this is what makes
the "flashing" effect. The page itself, however, is not reloaded.

If you want to assure your customers you may display your page with Firefox using FireBug
extension. The firebug console clears itself whenever the page is being replaced or reloaded
and you can tel for sure that the page does not refresh.

Wednesday, March 21, 2012

need help in master pages using ajax

hi all i need an advice concerning the use of master page using async

first ive discovered that page loads using links to pages of the same master page cant be done without postback so am searching for a way to apply a way of implementing my site using master pages and ajax

so i put a master page with a header and a contant place holder next i implemented a page using mymaster page and i put within a iframe for the other pages so as those pages can be loaded asyc for the first time it seemd working just fine but when i put in the pages residing in the iframe an ajax implementation it asks for script manager so heres the prob

plz give me a good way implementing my master page without many postbacks and without using multiview

a conceptual way ........ thanks a lot

Why use masterpages if you want your pages to behave like you are using frames? You would probably be better off if you just had an aspx page with an iFrame.