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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

browser version : unknown ??

Status
Not open for further replies.

yuli1104

Programmer
Feb 20, 2002
60
CA
Hello,

I am using NT4 IE6. when I tried to run our company website on my localhost, it always say: browser not support. but If I browse to company (dev, test,production) website, everything is fine. that means my browser is ok.
when I go to localhost and run the following asp to check my browser type:

<html>
<body>
<%
Set MyBrow=Server.CreateObject(&quot;MSWC.BrowserType&quot;)
%>
<table border=&quot;1&quot; width=&quot;100%&quot;>
<tr>
<th>Client OS</th>
<th><%=MyBrow.platform%></th>
</tr><tr>
<td >Web Browser</td>
<td ><%=MyBrow.browser%></td>
</tr><tr>
<td>Browser version</td>
<td><%=MyBrow.version%></td>
</tr><tr>
<td>Frame support?</td>
<td><%=MyBrow.frames%></td>
</tr><tr>
<td>Table support?</td>
<td><%=MyBrow.tables%></td>
</tr><tr>
<td>Sound support?</td>
<td><%=MyBrow.backgroundsounds%></td>
</tr><tr>
<td>Cookies support?</td>
<td><%=MyBrow.cookies%></td>
</tr><tr>
<td>VBScript support?</td>
<td><%=MyBrow.vbscript%></td>
</tr><tr>
<td>JavaScript support?</td>
<td><%=MyBrow.javascript%></td>
</tr>
</table>
</body>
</html>

I always get:

Client OS Unknown
Web Browser Default Browser
Browser version Unknown
Frame support? True
Table support? True
Sound support? False
Cookies support? False
VBScript support? False
JavaScript support? False

How come the broser version is unknown, I even reinstalled IE6, it still is the same, help!!!


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top