The aspisapi.ini configuration file is
located in the same folder as the aspisapi.dll. This INI file provides the capability to configure some behaviors
of the ISAPI. The following is a sample aspisapi.ini file:
[Main] UseCache=0 DefaultLanguage=VBScript IISComments=1 [Mail] SmtpServer=127.0.0.1 SmtpPort=25 SmtpTimeout=5000
The following table provides details on how to use the aspisapi.ini configuration file.
| ASPISAPI.INI Key | Accepted Key Values | Description |
|---|---|---|
|
||
UTF8 |
integer value of 0 or 1 | This key specifies that UTF-8 encoding is used if encoding is not specified in the ASP page. |
UseCache |
integer value of 0 or 1 | This key defines whether the ISAPI has to use an internal memory cache for the preprocessed ASP files. This feature greatly increases the performance when the Web site is run from CD or DVD. |
DefaultLanguage |
string value of VBScript or JScript | This key specifies which language will be used by the ISAPI if one is not specified in the ASP page. |
IISComments |
integer value of 0 or 1 | This key specifies if ASP Classic engine has to interpret the // comment delimitator in VBScript web pages as IIS does. |
|
||
SmtpServer |
string value in IPv4 format | This key specifies the IP address of the SMTP server that will be used to send email. |
SmtpPort |
integer value | This key specifies the port of the SMTP server that will be used to send email. Refer to the DWebPro Internal Constants topic for related settings. |
SmtpTimeout |
integer value | This key defines the timeout interval, in milliseconds, before Mail.Send() method returns an error. |

