473,545 Members | 1,998 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multi browser compatibility check

Hi,

I am struggling with making my website compatible with multiple browsers and
versions.

Is there any tool that shows me how my pages look like in different browsers
and versions?

Any help would be appreciated,

Alan
Jul 12 '06 #1
4 4291
Allen,

I use a virtual machine to load various browsers on and then fire it up and
check that way. I think that is the most common practice.
Regards,

--
S. Justin Gengo
Web Developer / Programmer

Free code library:
http://www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Maxwell200 6" <al******@newsg roup.nospamwrot e in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
Hi,

I am struggling with making my website compatible with multiple browsers
and versions.

Is there any tool that shows me how my pages look like in different
browsers and versions?

Any help would be appreciated,

Alan


Jul 12 '06 #2
Hello Max,

I agree with Justin that you'd better setup a test environment with all
those popular webbrowers and test your page interactively. As for browser
compatibility testing, there is no good automation approach because
browserCap test is completely rely on the web page's UI presentation in
different browsers. We could not guarantee the correct behavior without
getting the screen of the rendered page in browser.

BTW, I've found some web application browser compatiblility testing
resource over the internet:

#Browser Compatibility Testing Online
http://www.masternewmedia.org/2003/0..._testing_onlin
e.htm

and it seems the following tool is quite cool, you can have a look at it:

http://www.browsercam.com/

Hope this helps some.

Regards,

Steven Cheng
Microsoft MSDN Online Support Lead
=============== =============== =============== =====

When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jul 13 '06 #3
Hi Max,

How are you doing on this issue, does the information in our response helps
you some? If there is still anything we can help, please feel free to post
here.

Regards,

Steven Cheng
Microsoft MSDN Online Support Lead
=============== =============== =============== =====

When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jul 16 '06 #4
"S. Justin Gengo" <ju****@removet osendmailaboutf ortunate.comwro te in
message news:uq******** ******@TK2MSFTN GP03.phx.gbl...
I use a virtual machine to load various browsers on and then fire it up
and check that way. I think that is the most common practice.
That's certainly what I do. After Windows (!) and VS.NET, I'd say VirtualPC
is probably the most useful piece of software I have. Certainly, the cost
savings in test hardware are almost incalculable!

I have a development machine with WinXP Pro, IIS and IE.

I have a VirtualPC with WinXP Pro and the latest versions of IE, FireFox,
Netscape & Opera. If I need to test something on an earlier version of
Windows and/or an earlier version of one of the Windows browsers, I'll build
a new VirtualPC just for that, at a cost to the client, of course...

I have a VirtualPC with SuSE 10 and the latest versions of Konqueror,
FireFox & Opera - I don't provide testing or support on earlier versions of
SuSE or the browsers that run on it.

I have a MacMini with MacOSX and Safari, FireFox, Netscape & Opera - I don't
provide testing or support on earlier versions of MacOS or the browsers that
run on it. Of course, this means I don't support IE on MacOS9 but, as
Microsoft ditched this years ago, I don't really care...

Also (don't laugh) I have a VirtualPC with WinNT4 workstation, IIS4, ASP3,
MTS2 and SQL Server 6.5 to provide support for a legacy system for a huge
multinational client. For whatever reason, they have chosen not to upgrade
this system - it just sits in their production server room churning away.
They pay me a silly amount for this, and I haven't had a single support call
in over four years... :-) I love being an IT contractor!
Jul 16 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2999
by: Jez Naisbitt | last post by:
Hi Guys, After a break of 2 years I'm now re-visiting the world of java. I recall on my last foray that I had to stick to java 1.1 so I could deploy applets from a server and obtain maximum compatibility with the standard browsers, supplied on all platforms: We live in the pre-press industry where folk use diverse platforms such as Sparc,...
2
10016
by: Eddy Stone | last post by:
Apologies in advance... I am sure this question will have been asked before in some form or another - please don't flame me ! I am new to creating webpages - is there a website where I can "view" my own webpage as it would appear on various different browsers ? to check for compatibility etc... Thanks
33
3417
by: Mark Tranchant | last post by:
My site now uses Apache MultiViews and some PHP code to determine whether your browser can handle the application/xhtml+xml media type. If it does, the document is sent with that content type and the XHTML 1.1 DOCTYPE. If not, it is sent as text/html and the XHTML 1.0 DOCTYPE. Details of how this is achieved and the problems solved en...
5
3086
by: Trenqo 0 | last post by:
Instead of doing repetitive checks throughout my code, or defining new methods that won't work unless they are included, I have taken the approach of redefining existing methods in order to make them as cross browser compatible as possible. For example: if(!document.getElementById) { if(document.all)
15
2299
by: CMM | last post by:
So I'm half way through overseeing a large project in ASP.NET 2.0. My superiors have decided that it would be nice if we ensured the site worked on all the major platforms (as they see it: IE, FireFox, and Safari). We've made heavy usage of the new MENU control and other intrinsic 2.0 controls.... nothing fancy! just using ASP.NET's built-in...
1
1406
by: conckrish | last post by:
Hi All, I have an asp.net application which contains one signup form.When I run in IE 6.0,its working fine as for my design.. But when I run in Mozilla, there are some 10 - 15 px extra bottom -padding between each textbox control.( I have placed the whole form inside a table and each textbox contols in diff cells of the table and each...
27
2692
by: David Golightly | last post by:
This is just a quick poll for all you web devs out there: What browsers do you test on/are concerned about compatibility with? Obviously, you're going to test on current-generation browsers such as IE6, IE7, Firefox 1.5/2, Opera 8/9, Safari 2, etc. How old must a browser be before you stop worrying about it? Anybody here still test on...
11
6206
by: rossum | last post by:
I want to declare a const multi-line string inside a method, and I am having some problems using Environment.NewLine. I started out with: class foo { public void PrintStuff() { const string multiline = "The first line." + Environment.NewLine +
1
2966
by: smith | last post by:
check this tool ..completely automated browser compatibility testing tool ..amazing!!! http://www.essentiabct.com
0
7473
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7660
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7813
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7761
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
4949
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3457
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1888
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1020
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
709
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.