vote up -5 vote down star

Somebody please help..... I am even starting to doubt ASP .Net....i should have opted for php on this project... It seems ASP >net is only good in IE and never good in Firefox,Safari etc Is there a way to just make my pages render correctly in Other browsers other than IE..... The last time i was told to put .browser in my project and that really worked....for a season...now only the master page shows and content inside the content placeholders does not show....Help...

flag

50% accept rate
Any code examples you can show us? – Phil Jenkins Oct 7 at 14:11
No one can answer this without seeing the code. – Dan Monego Oct 7 at 14:12
Browser differences really come down to how something is rendered on the page. The framework you choose only affects how the server interprets your markup, so you may have an underlying html/css question in here as opposed to .net vs php. – Alexis Abril Oct 7 at 14:13
2  
"It seems ASP >net is only good in IE" -- blame the craftsman, not the tool. – Juliet Oct 7 at 14:26
How does stackoverflow.com renders in your Firefox, safari, etc... it was built on ASP.NET MVC... as one person already said - blame the craftsman, not the tool. – Ricardo Oct 7 at 14:47

2 Answers

vote up 0 vote down check

This is due to the HTML, CSS and doctype you are using. This problem occurs regardless of the server development language. I personally use FireFox and IE8 for development. I do test my sites in both browsers as well as having IE8 run in IE7 mode to find markup issues.

To find the problem, I'd copy the HTML and CSS into an HTML file (putting the CSS inline) using your favorite text editor. Display the file in the browser and see what happens. This will also make it easier to see what markup changes are needed to fix the problems.

Once you've isolated the HTML/CSS problem, post the markup and the server page here and we can help you determine the changes necessary in the ASP.NET page.

link|flag
vote up 1 vote down

This is probably not a general problem with ASP.Net, but an issue with the specific layout you are implementing. An example of the specific problem, complete with the HTML source would be necessary to diagnose the problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.