IISMANAGER V1.1 is an online management IIS, maintaining site components, safe and stable, and most importantly is completely free. I hope that the friends will help, the copyright belongs to Shengtian Technology, retaining all rights, please contact QQ37878073. ISMANAGER V1.1 Features:
1) Creating a site 2) Modify site properties, in addition to the commonly used properties, there are some control properties, such as bandwidth, CPU use percentage, etc. 3) Delete Specify Site 4) Stop Specify Site 5) Start the designated site ...
The following features are expected to add:
Systemal requirements: 1, Windows 2000 Server, Windows 2003 Server2, IIS 5.0 or later 3, system administrator privileges
Parameter Description:
Attribute Description Name Say that the cognitive value servername is only written, set the server name, or IP address localhostsiteIndex only writes, set the site's index, which is uniquely identifies the properties of the Web site. 1ServerComment Site Description New Site ServerBindings Binding Server, including IP, port, homage head, format, for example: 192.168.0.1: 80: www.senty.com: 80: rootpath Site root directory C: / inetpub / wwwrootenabledeDefaultDoc Enables the default document TrueDefaultDoc Site default document default.htm, default.asp, index.htm, index.aspmaxconnections site allows the maximum number of connections 50 Serversize Site performance, 0- low (less than 10000), 1- (less than 100000), 2- High (more than 100000) 1MaxBandWidth only writes, network bandwidth maximum usage, unit (KB), -1 means unlimited -1ServerConnectionTimeout connection timeout seconds, unit (second) 600sessionTIMEOUT only write, session expired time, unit (minutes) 20accessRead allowed to read trueAccessWrite allowed FalseNableDirBrowsing Allow Directory Browse FalseAccessScript Perform License FalseAccessSource Allows Scripts to Access FalseAccessExecute Allow Application FalseScripTerrorSentTobrowser to send a custom message to the client FalSescripterrorMessage Send the information to the client when the client is sent to the client. Please contact the system administrator. Component Method Name Specifies that the review value CreateWebsite () creates a Web site, please set some of the previous common properties before you create. Success: Site ID is unsuccessful: Error prompt Delwebsite () Delete the specified site, you need to specify the site of INDEX. Success: 0 Unsuccessful: Error Tip UpdateWebsite () Modify site properties, you need to specify the INDEX of the site. Serverbindings properties cannot be modified in this method. Success: 0 Unsuccessful: Error prompt getInfo () Get the property value of the site, you need to specify Index. ServerBindings properties cannot be obtained with this method. Success: 0 Unsuccessful: Error prompts SethostHeader () Sets the web site host header, you need to specify Index. SETHOSTHEADER ("SENTY.com") Success: 0 Unsuccessful: Error Tip StopWebsite () Stop specified site, first specify index. Success: 0 Unsuccessful: Error Tip StartWebsite () Startup already specified site, you need to specify index. Success: 0 Unsuccessful: Error Tip Details Instructions:
1. Copy the SENTY.DLL component to a bit 2, install the component, start-> Run -> regsvr32 [path] /sent.dll3, create the site, and set the anonymous access account for the site as a senior administrator account, The steps are as follows: (Take Win20003 as an Example) Right-click Site -> Properties -> Directory Security -> (Authentication and Access Control) Edit -> Press the prompt to select Advanced Administrator Account 4, call the component example: <% DIM OBJIISMANAGER
Set objiismanager = server.createObject ("SENTY.IISMANAGER")
'Creating a site
'objiismanager.servername = "localhost"
'objiismanager.servercomment = "My Site"
'objiismanager.rootpath = "d: / temp"
'objiismanager.serverbindings = "192.168.0.4:8004:www.selfy.com"' format - IP address: port number: domain name
'response.write objiismanager.createwebsite ()
'Read Site Information
'Objiismanager.siteIndex = 3
'objiismanager.getinfo ()
'Response.write objiismanager.servercomment
'Modify the site
'Objiismanager.siteIndex = 3
'objiismanager.getinfo ()
'objiismanager.rootpath = "g: / temp / IIS"
'...... (other attributes can be set the same method, not much here)
'response.write objiismanager.UpdateWebsite ()
'Modify the main unit
'Response.write objiismanager.sethosthead ("192.168.1.34:80:7neTy.com")
'Stop site
'response.write objiismanager.stopWebsite ()
'Starting site
'response.write objiismanager.startWebsite ()
%>