Click here to Skip to main content
15,908,013 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am designing some webapges.But in internet explorer it is not displaying properly.Remaining browsers it is diaplying proper.How to solve this issue.
Posted
Comments
Sandeep Mewara 23-May-12 4:00am    
Incomplete question. 'Not displaying properly' will not help you much.

1. Never give height or width in px..unless it is necessary.
2. Never give <table cellpadding="2" ... instead apply padding class from Css.
3. If u are writtnig document.getElementById somewhere in ur Client side fucntion and if u have the <as:Scriptmanager with u then use $get...
i.e instead of document.getElementById("objID"); write $get("objID"); //as $get is browsewr compatible
4. If u have written code to hide < tr > remove that and palce a div in the tr and then show hide that div.. bcoz it does not work in Mozilla.
5. Avoid writing rowspan and colspans.
6. Write the java script function at the end of ur aspx page.
Have a look ate the xhtml standards

refer these links:
HOW TO make web pages "cross browser"

Top 10 Tips:
http://www.elated.com/articles/cross-browser-website-tips/

Browser-Tutorial for knowledege abt screen size& browsers:
Browser Compatibility Tutorial

for your scripts refer this:
Designing Your Website for Browser and Platform Compatibility

For Old Version browsers i.e IE6 refer this:
Web Design Tips: Compatibility with Older Browsers

Hope it helps!
 
Share this answer
 
Comments
Mohamed Mitwalli 23-May-12 3:38am    
5+
Prasad_Kulkarni 23-May-12 3:41am    
Thank you :)
Refer these sites..... which will give you some idea

http://browserdetection.codeplex.com/[^]
http://browsercompatibility.codeplex.com/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900