vote up 1 vote down star
1

I have a small website developed using VS2005 and mySQl, it's just 2 webforms and login page.

During the development and testing phase, me and my customer were using IE6, and it was looking fine, we didn't test with other browsers because it's a small application, and just a add-in for large desktop application.

The customer informed me that site doesn't like the same when he installed IE7, for example I have a webfrom that show a page with Gridview that has multiply pages(AllowPaging=On), it doesn't look fine in IE7 and I can't navigate to other pages in Gridview, but it was working fine with IE6, and there's no complicated things, just plan GridView with small formatting.

I installed IE8 and doesn't look fine with it too, even in compatibility mood.

Have anyone faced the same problem?, and what should be the quickest or best solution for that?.

I know, I SHOULD NEVER USE WEBFORMS AGAIN.

flag

Could you post the .aspx? It's hard to solve the problem without seeing the code.. unless you can reproduce the problem by dragging a gridview in a blank page.. which I doubt. – Thomas Stock Apr 30 at 14:37
1  
"Never again" is for IE6, not Webforms. – Joel Mueller Apr 30 at 18:54

4 Answers

vote up 4 vote down check

The only reason for a difference in look between the browser versions is your styling and doctype.

Start with setting a doctype to run in quirks mode. You can get information about it here.

After that, see if things improve. If not, I would start ripping out any css/styles/themes you may be using. Then build it back up using normal CSS.

Incidentally, web forms isn't the problem in this case; it's a styling issue.

link|flag
vote up 2 vote down

as Chris mentioned, add to that that browsers have really some annoying differences that makes you pull your hair sometimes, and 90 % of the time it is related to CSS.

so what i suggest is the following

  • use a tool called IE Tester, it is amazing tool that let you test your sites in all IE versions.
  • Use conditional command for targeting IE specific version if some CSS rule is wrong.
  • we use this tool http://rafael.adm.br/css_browser_selector/ it is really amazing it let you define css rules for each browser without hacking or conditional statement, but the down side it is Javascript dependent, but we had no complains.
  • also this script http://dean.edwards.name/IE7/ which is brilliant, it will let IE 6 behave like IE 7 which will save you tons of problems, again it is Java Script dependent.
  • Avoid Hacks as much as possible, the above methods will help you a lot.

hope this helps.

link|flag
Great additional suggestions +1. – Chris Lively Apr 30 at 20:17
glad i helped out, it is really tough now a days – devmania Apr 30 at 22:09
vote up 0 vote down

normal ms issue, they can never get things right at the 1st place--guess they need to do this to make money

link|flag
vote up 0 vote down

Thanks a lot. It solved my 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.