Browser Compatiablity

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to ensure the application can run with different browsers??
Are there any known issue list and how to avoid them ??

Any links please.

Thanks
vinay
--
http://pathidotnet.blogspot.com
=====
vInAypAtHi
o__
---_,>/'_------
(_) \(_)
---------------
 
The only way to ensure the application will run with different browsers is
to test it with different browsers.
As a general rule of thumb, try to keep the HTML as simple and generic as
possible. Try to stay away from the more modern HTML techniques (like CSS
and absolute positioning) if you can to preserve cross browser
compatability. Javascript also has compatability issues, so avoid it when
you can and test it thoroughly when you must.
Also, you can detect the browser and spit out different code for particular
browsers if you need to.
 
there are a lot of issues. google your subject line to get a good list.
the only way to insure is lots of testing with different browsers.

-- bruce (sqlwork.com)
 
How to ensure the application can run with different browsers??

For an ASP.NET application, you can modify the BrowserCaps section in
your Web.config. This section tells ASP.NET how to talk to different
browsers.

An updated BrowserCaps section can be found here:
http://slingfive.com/pages/code/browserCaps/

It seems to work fine for Opera, Mozilla, Firefox, and the like.

Greetings,
Wessel
 
Back
Top