Re: Weird problem with IFRAME

2012-12-18 Thread Byron Mann
I found this somewhat related article. http://stackoverflow.com/questions/11935458/ie9-bug-iframe-misbehaving-due-to-url-sensitivity Article does not mention it, but I believe the meta http-equiv=X-UA-Compatible content=IE=EmulateIE8 (with whichever IE mode you wind up with) has to be the

Re: Weird problem with IFRAME

2012-12-18 Thread Claude Schnéegans
I found this somewhat related article. Well, no it is not the same. This one seems to deal with an error when setting the SRC attribute by Javascript, which is not what I'm doing. Whet I have is a page like myPage.cfm which has an IFRAME SRC=myPageEdit.cfm... When it works normally I do see

Re: Weird problem with IFRAME

2012-12-14 Thread Claude Schnéegans
Is it possible the IFrame src is getting redirected to the root It would be if the file is not found, but the file exists and it works with all other browsers, including IE8. Only IE9 seems to have trouble. And if it was redirectected, there would be a trace of it in the HTTP logs For instance

Re: Weird problem with IFRAME

2012-12-14 Thread Maureen
a very weird problem with an IFRAME in my site. Here is the code in file mondossier.cfm: IFRAME SRC=monDossierEdit.cfm?type=#type# WIDTH=950 HEIGHT=650 FRAMEBORDER=0 STYLE=position:relative; NAME=admin/IFRAME type is blank

Re: Weird problem with IFRAME

2012-12-14 Thread Claude Schnéegans
it looks like you need a space between mondossier.cfm and type=#type# No, type here is a parameter in the url, not an attribute for IFRAME IFRAME has no TYPE attribute anyway, only SRC and NAME. ~| Order the Adobe Coldfusion

Weird problem with IFRAME

2012-12-13 Thread Claude Schnéegans
Hi, One of my customers is having a very weird problem with an IFRAME in my site. Here is the code in file mondossier.cfm: IFRAME SRC=monDossierEdit.cfm?type=#type# WIDTH=950 HEIGHT=650 FRAMEBORDER=0 STYLE=position:relative; NAME=admin/IFRAME type is blank With all browsers

Re: Weird problem with IFRAME

2012-12-13 Thread Byron Mann
Think I ran into this before with relative paths without '/' Try ./file.cfm Byron Mann Lead Engineer Architect HostMySite.com On Dec 13, 2012 2:14 PM, wrote: Hi, One of my customers is having a very weird problem with an IFRAME in my site. Here is the code in file mondossier.cfm

Re: Weird problem with IFRAME

2012-12-13 Thread Claude Schnéegans
Try ./file.cfm Ok, I tried, but it makes no difference. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Weird problem with IFRAME

2012-12-13 Thread Byron Mann
Is it possible the IFrame src is getting redirected to the root because the user is not logged in? On Thu, Dec 13, 2012 at 4:14 PM, wrote: Try ./file.cfm Ok, I tried, but it makes no difference. ~| Order the Adobe