Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cross Browser Functionality Check 1

Status
Not open for further replies.

adamroof

Programmer
Joined
Nov 5, 2003
Messages
1,107
Location
US
In regards to a recent post with a link to a great site, what other tools do you use to confirm your sites operation within multiple browser types?


is the goal in asp.net to become fully HTML 4.0 transitional as the link above states?

one of my public sites works fine and only reason i know is a fried who used firefox said its fine. another public site i helped with has some issues with FireFox. Ive done browser checks in my javascript, but beyond that...
 
There's quite a few checks you should do. There are (X)HTML checks such as:

1) 2)
These will validate you site against the DOCTYPE that you've used (have a look at for different DOCTYPES that you can use and when to use them).

Then, there is CSS validation from:

1) 2)
and you should also do manual checks for actual design/display issues with browsers such as (there are many more but these are some of the more widely used ones):

1) IE
2) FireFox
3) Opera
4) Netscape

There are also accessibility checks that you should do (mainly for disabled users) and you can view infor on this from sites such as:


and to answer your direct question:
is the goal in asp.net to become fully HTML 4.0 transitional as the link above states?
No, the goal is to become fully compliant with the DOCTYPE you've chosen.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.
 
very well written response and very helpful
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top