Acenetglobal.com
Index
Upload your Website
Examples
Control Panel Login
Help Index
Contact us

 

Server Variables

You can access information about an IIS server using ASP script function Request.ServerVariables("VARIABLE"). The following code fragment demonstrates for to obtain the server name. Due to secure concerns this page has been moved from acenetglobal.info to users area.

<% 
'Example,
Dim output
output = Request.ServerVariables("SERVER_NAME") 
Response.Write(output)

'outputs the value: www.acenetglobal.info

%>

Server Variable Example output