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

Can you check the IIS setting in from an ASP page.

Status
Not open for further replies.

wassup

Technical User
Oct 3, 2000
52
0
0
GB
Can you check the IIS setting in from an ASP page.

The setting I am wanting to check are number of connections and bandwidth limit.

If you know how to change them form an asp page this would be really useful!
 
While I am not 100% sure, I really don't think you can check server IIS values without some sort of ASP component (which are usually complied ActiveX or Visual Basic DLL's when working with ASP) Harold Blackorby
hblackorby@scoreinteractive.com
St. Louis, MO
 
This may help your de-bugging

You can quickly see all the server sent settings to the
browser by printing the ALL_HTTP server variable.

<%
Response.Write Request.ServerVariables(&quot;ALL_HTTP&quot;)
%>
 
Response.Write Request.ServerVariables(&quot;ALL_HTTP&quot;)
Does not give you number of connections limit and bandwidth limit.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top