Saturday, March 31, 2012

simulating varios browser environments

My web server is IIS 6.0 on Windows 2003 Server but my clients can vary from IE, Netscape, Mozilla, Firefox on PC to Safari on Mac. Is there a way I can simulate this environment to test my application? For PC clients, I guess I can just download multiple browsers and run the application in different browsers but what about Mac?Hi,

Take a look @.Browser Photo

HTH
On my development PC, my resolution is set to 1152x864 but I want to develop (and test) my ASP.NET application that will be for 800x600 resolution.

How?
Hi

Create html table and set width="100%" and put all the contents in side the table.


<HTML>
<HEAD>
<TITLE>Page title</TITLE>
</HEAD>
<BODY>
<TABLEWIDTH="100%">
<TR>
<TD
Put your page contents here

</TD>
</TR>
</TABLE>
</BODY>
</HTML>

HTH
That I know but I want to "simulate" different resolutions so that when I put my control on a page I know if it is going to fit or not.

0 comments:

Post a Comment