|
 |
asp_databases thread: How to check Broser Resolution ..?
Message #1 by Farid Attamimy <Farid.Attamimy@a...> on Mon, 22 May 2000 14:49:33 +0700
|
|
Friends,
Is any little code to check the Browser (IE, NS) Resolution ...?
Message #2 by "Velzen, Marvin van" <MVE@e...> on Mon, 22 May 2000 12:51:37 +0200
|
|
You can check this by using the DHTML tags "screen.height", "screen.width"
If necesarry you can even ask the colordepth by using "screen.colorDepth"
for more info check the IE4 Dynamic HTML book from wrox
-----Original Message-----
From: Farid Attamimy
Sent: maandag 22 mei 2000 9:50
To: ASP Databases
Subject: [asp_databases] How to check Broser Resolution ..?
Friends,
Is any little code to check the Browser (IE, NS) Resolution ...?
Message #3 by Anil Budhkar <anilb@m...> on Mon, 22 May 2000 16:34:33 +0530
|
|
You may try following code ...
Details of your browser are:<P>
<%
strUA = Request.ServerVariables("HTTP_USER_AGENT")
Response.Write "The User Agent string is <B>" & strUA & "</B><P>"
If InStr(strUA, "MSIE") Then
Response.Write "Your browser is IE "
Else
Response.Write "Your browser is probably NS "
End If
%>
-----Original Message-----
From: Farid Attamimy
Sent: Monday, May 22, 2000 1:20 PM
To: ASP Databases
Subject: [asp_databases] How to check Broser Resolution ..?
Friends,
Is any little code to check the Browser (IE, NS) Resolution ...?
Message #4 by "Ken Schaefer" <ken.s@a...> on Tue, 23 May 2000 10:49:45 +1000
|
|
Sorry, but what does this question have to do with ASP and databases? Aren't
we getting a little off-topic here?
Cheers
Ken
----- Original Message -----
From: "Farid Attamimy"
To: "ASP Databases" <asp_databases@p...>
Sent: Monday, May 22, 2000 5:49 PM
Subject: [asp_databases] How to check Broser Resolution ..?
>
> Friends,
>
> Is any little code to check the Browser (IE, NS) Resolution ...?
|
|
 |