Mozillahttp://forums.asp.net/t/1100307.aspx/1?MozillaSun, 27 May 2007 16:12:41 -040011003071670901http://forums.asp.net/p/1100307/1670901.aspx/1?MozillaMozilla <p>Hi All,</p> <p>&nbsp;I am pretty new at this, but when I saw how nice the starter kits were I had to have a look.&nbsp; I have the Visual Web Developer 2005 Express and then downloaded the Small Business Starter Kit.&nbsp; Made some small modes only color changes.&nbsp; When I press Ctrl&#43;F5 it uses the Development server to display in Internet Explorer and it looks great.&nbsp; But if I take that URL and paste in Mozilla or Opera it is all out of position.</p> <p>&nbsp;Has anyone else run into this?&nbsp; Does it display differently when using IIS?&nbsp; </p> <p>&nbsp;</p> <p>&nbsp;</p> 2007-04-18T12:35:15-04:001670942http://forums.asp.net/p/1100307/1670942.aspx/1?Re+MozillaRe: Mozilla <p>Hi,</p> <p>and welcome to the ASP.NET forums.</p> <p>IIS resides on the server, gets requests for a page, that page gets executed/rendered, and IIS sends the output of that process to the clients browser.</p> <p>The rendered output I mentioned gets displayed in the browser, which hasn't got anything to do with the server anymore at that point. It's up to the browser to display the html, css, images, ...</p> <p>To come back on your question: Mozilla and IE render things differently as they use different rendering engines so it's quite likely an application was created specifically with IE in mind and Mozilla renders it completely different.</p> <p>Grz, Kris.</p> 2007-04-18T12:57:33-04:001689068http://forums.asp.net/p/1100307/1689068.aspx/1?Re+MozillaRe: Mozilla <p>Hi All, </p> <p>&nbsp;</p> <p>So does this mean we can do nothing to make Mozilla browsers render like how IE does? Cause I am experiencing same problem also .</p> <p>&nbsp;</p> <p>Thanks, Apoy</p> 2007-05-01T03:34:13-04:001689189http://forums.asp.net/p/1100307/1689189.aspx/1?Re+MozillaRe: Mozilla <p>Hi,</p> <p>no you can change the CSS files so that Mozilla also renders this stuff correctly. Maybe someone already did this so you may want to use google first. ASP.NET also offers the ability to output specific stuff targeted a a specific browser that could help you in your effort. You can also use <a class="" href="http://msdn.microsoft.com/msdnmag/issues/06/10/extremeaspnet/default.aspx" target="_blank"> Control adapter to output different html</a> for a certain control but I think it would be best to just alter the CSS files first before going that road.</p> <p>Grz, Kris.</p> 2007-05-01T05:52:51-04:001720443http://forums.asp.net/p/1100307/1720443.aspx/1?Re+MozillaRe: Mozilla <p>It is not just about whether the browser renders the html correctly; IIS outputs diferent html to different browsers.</p> <p>In particular, IIS treats Firefox as an early low-powered browser, too dumb to understand css, instead of as this-years-model all singing all dancing version.</p> <p>You can get round this, to a large extent, by including some stuff about browser capabilities in your config files.</p> <p>And try including <font color="#ff0000" size="2">ClientTarget</font><font color="#0000ff" size="2">=&quot;UpLevel&quot; in your &lt;%@ Page&nbsp; ... &gt;&nbsp;</font>&nbsp;</p> <p>Search the forums for Firefox and browser cap.</p> <font color="#0000ff" size="2"><font color="#000000"></font></font><font color="#0000ff" size="2"> <p></font>&nbsp;</p> <p>&nbsp;</p> 2007-05-23T00:23:59-04:001722223http://forums.asp.net/p/1100307/1722223.aspx/1?Re+MozillaRe: Mozilla <p>This is a link to an article about how ASP.NET/IIS doesn't send full code to Firefox,</p> <p>and some differences&nbsp;in the results from IE and more standards-compliant browsers.</p> <p><a href="http://slingfive.com/pages/code/browserCaps/">http://slingfive.com/pages/code/browserCaps/</a></p> <p>&nbsp;</p> <p>and here is a link to a fix,&nbsp;&nbsp;You paste some XML about browser capabilities into web.config or machine.config</p> <p><a href="http://asptoday.com/Content.aspx?id=2339">http://asptoday.com/Content.aspx?id=2339</a></p> <p>&nbsp;&nbsp;Works for me (most of the time).</p> <p>&nbsp;</p> <p>&nbsp;</p> 2007-05-23T19:28:46-04:001727418http://forums.asp.net/p/1100307/1727418.aspx/1?Re+MozillaRe: Mozilla <p>The main problem with Opera (except IE and Firefox) is sensitivity for html. </p> <p>IE does reading html with fixing some thing that are out of IE screen borders. Opera just displace that row or element.</p> <p>That problems are more visible in user made components and include almost all languages (asp.net, php...).</p> <p>If something is not working first check html, or css and do not use some new stuff, in other cases try to find fix.&nbsp;</p> 2007-05-27T16:12:41-04:00