> >We have our home page using Cold Fusion to access dynamic data
> to update a
> >new biography displayed on the page each day.
> >
> >One minor problem we notice, only in Netscape (we use 4.04), is that when
> >you resize the screen the home page comes up blank; clicking
> reload brings
> >it back. It does not do this in IE.

> Thats a clasic netscape problem. It has nothing to do with Cold Fusion or
> your CF code. Id look directly into the javascript your using on the page.

That's correct. You're probably using a frameset, no? If so, add this
function to the frameset template between the <head> tags:

function myResize(){
 if (navigator.userAgent.indexOf("Netscape")>-1){
  alert('Hey Buddy, now look what you did! If you're going to be resizing
the window all the time, at least get a decent friggin browser!')
  self.location.reload();
 }
}

Then in your main <frameset> tag, add this:

  onResize="myResize();"

Works for us. Of course, you might want to leave the alert() call out. :)

Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.
http://humankindsystems.com
mailto:[EMAIL PROTECTED]




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to