Get A List of Server Variables Using ASP

<%
    For Each Item In Request.ServerVariables
        Response.Write "<b>" & Item & "</b><br>"
        Response.Write Request.ServerVariables(Item) & "<br><br>"
    Next
%>

  • 0 Utilizadores acharam útil
Esta resposta foi útil?

Related Articles

Domain Physical Path in Windows 2003 Server

In Windows 2003 server , all the domains and subdomains will have the following format of...

How to Move Blogger to Self-hosted WordPress

How to Move Blogger to Self-hosted WordPress In this example, say that you have a Blogger blog...

IP Banning Through .htaccess

Setting up your error documents through the .htaccess file is easier than one might think. Here...

Setting Up A Web Page Redirect in Linux

Setting up a web page redirect is really easy. The simplest way would be to just to do it through...

Difference Between The "public_html" and "www" In Linux

There really is no difference; your web root (where you upload your web site files to) is the...