Let IIS support a variety of scripts

  
on the Internet read a lot of articles, but support jsp, tried N times are not successful, today saw "lonely" "jsp connection sql server 2000 database configuration", inspired, small After a while, it was a success. But the operating system is win2k-p, can be used, the current IIS has been supported: ASP, ASP.NET, PHP, JSP, Perl, cool! ! Now simply say:

a support of ASP
support ASP, directly under IIS on the line, do not install another software.

Second, support for ASP.NET
download Microsoft Microsoft .NET Framework, installed directly.

Third, support for PHP
download PHP For IIS software, installation, add the extension connected "Application Mapping" in the IIS.

four support JSP
1. install J2SDK (j2sdk-1_4_2-windows-i586.exe, Download)

2. J2SDK configuration environment variable
JAVA_HOME = C :\\j2sdk1.4.2
CLASSPATH=C:\\j2sdk1.4.2\\bin;.;C:\\j2sdk1.4.2\\lib;C:\\j2sdk1.4.2\\lib\\dt.jar;C:\\j2sdk1.4.2\\ Lib\\tools.jar
Add PATH=C:\\j2sdk1.4.2; C:\\j2sdk1.4.2\\bin
Restart the computer after the configuration is completed

3. Test the installation and configuration is normal
public class test{
public static void main(String args[]){
System.out.println("This is a test program.");
}
}
will Save the above code as test.java, then type javac test.java at the command prompt; java test

4. Install Tomact(jakarta-tomcat-4.1.30.exe, download address)
< BR>5. Configure the Tomact environment variable
CATALINA_HOME=C:\\Program Files\\Apache Group\\Tomcat 4.1
Add CLASSPATH=C:\\Program Files\\Apache Group\\Tomcat 4.1\\common\\lib\\servlet.jar< BR>Restart the computer after the configuration is completed

6. Test whether the JSP is normal
Start Tomact, then enter http://locahost:8080/in IE, if the webpage can display normally, it means O A.

V. supports Perl
download Perl For IIS, and then install.

so you will be able to support more than N IIS script, for learning and testing have great help. The software required above basically has a download address. My test environment: Intel815EPT+CIII-1.1G+HardDisk 20G+SD 256M+Win2k-P(SP4)
Copyright © Windows knowledge All Rights Reserved