ASP3 Demos
Home Up DHTML XML/XSLT Benchmarks ASP3 Demos

Server Vars VB
JS Browser ID
VB Browser ID
Server Vars JS
JS Browser ID2

We have two demonstrations here.

bulletServer Vars is more of a reference. It uses the "for each" syntax to enumerate all the variables available to us. Here is the vbscript code that is executed in the server (not the browser).

<table border="1">

<%For Each Item in Request.ServerVariables%>

<tr>

<td><%= Item%></td>

<td><%=Request.ServerVariables(Item) %></td>

</tr>

<%next%>

</table>

bulletDetect Browser uses a server variable to detect which kind of browser you are using. It then generates either a layer tag for Netscape or a div tag for Internet Explorer (IE). It displays the version number of the browser too. Lastly, it demonstrates a mouse roll-over technique that seems to work better in Netscape than IE.

 

 

 

Home Up Feedback Contents Search

Send mail to webmaster@SIGNITEK.com with questions or comments about this web site.