Michael
Wed Feb 11 21:08:36 CST 2004
> ... I think I'll need the list for servervariables and other
> stuff to avoid simple questions as this one in the future :/
Here's a simple ASP page I use to dump *all* server variables...
===servervars.asp===
<html>
<body>
<table width="100%" border="1" style="font:x-small verdana" >
<tr><td><b>server variable</b></td>
<td><b>value</b></td></tr>
<% for each strkey in request.servervariables %>
<tr><td><%=strkey %></td>
<td><%=request.servervariables(strkey) & " " %></td></tr>
<% next %>
</table>
</body>
</html>
--
Michael Harris
Microsoft.MVP.Scripting
Microsoft® Windows®2000 Scripting Guide
http://www.microsoft.com/technet/scriptcenter/scrguide/sagsas_overview.asp
TechNet Script Center Sample Scripts
http://www.microsoft.com/technet/scriptcenter/default.asp
Download in HTML Help format (searchable and indexed)
http://www.microsoft.com/downloads/release.asp?ReleaseID=38942
WSH 5.6 documentation download
http://www.microsoft.com/downloads/details.aspx?FamilyId=01592C48-207D-4BE1-8A76-1C4099D7BBB9&displaylang=en