| Author: Ramesh S 03 Jul 2009 | Member Level: Gold | Rating:  Points: 2 |
Is your application generates any script error when viewed in IE8?
Or does it display any server side error ?
Thanks & Regards Ramesh. S My Articles & Resources at DNS
|
| Author: gaurav tyagi 04 Jul 2009 | Member Level: Silver | Rating:  Points: 2 |
No the application does not generate any error.........but it just displays the inline code on the web page.It is due to the automatically generated <pre> tag in the HTML body.The problem is how to prevent this tag
|
| Author: gaurav tyagi 13 Sep 2009 | Member Level: Silver | Rating:  Points: 2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
|
| Author: gaurav tyagi 13 Sep 2009 | Member Level: Silver | Rating:  Points: 2 |
<div id="div1" runat="server" style="position:static; border:1px solid black; z-index:1; display:block;"> <div id="MovableLayer" visible=true style="Z-INDEX:1; POSITION:absolute; ">
<div id="divmain" runat="server" style="display:block; position:static"> <iframe id="frame" src="Default.aspx" onload="resize(this)" scrolling="no" style="position:absolute"> </iframe> </div>
function resize(iframe) { //debugger; iframe.height = iframe.contentWindow.document.body.scrollHeight ; iframe.width = iframe.contentWindow.document.body.scrollWidth ;
}
|