0% found this document useful (0 votes)
329 views2 pages

Run ASP.NET on Apache Guide

The document provides instructions for configuring Apache HTTP Server 2.0 to run ASP.NET applications. It involves installing Apache 2.0.54, Mod_AspDotNet module, and adding configuration to httpd.conf. A sample ASP.NET application directory is created at c:\SampleASP with an index.aspx page. Apache is restarted and navigating to http://localhost/SampleASP/index.aspx should display the ASP.NET page, demonstrating a successful configuration.

Uploaded by

Richard Rivas
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
329 views2 pages

Run ASP.NET on Apache Guide

The document provides instructions for configuring Apache HTTP Server 2.0 to run ASP.NET applications. It involves installing Apache 2.0.54, Mod_AspDotNet module, and adding configuration to httpd.conf. A sample ASP.NET application directory is created at c:\SampleASP with an index.aspx page. Apache is restarted and navigating to http://localhost/SampleASP/index.aspx should display the ASP.NET page, demonstrating a successful configuration.

Uploaded by

Richard Rivas
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd

How to make Apache run [Link] / [Link] 2.

0
Dont ask me why but ive been asked to make Apache run [Link]. IT Worked ! Even worked with [Link] 2.0 Site !
Following are the instruction to make [Link] work under apache: Install Apache 2.0.54 Install Mod_AspDotNet Add at the end of C:\Program Files\Apache Group\Apache2\conf\[Link] the following lines #[Link] LoadModule aspdotnet_module "modules/mod_aspdotnet.so" AddHandler [Link] asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo <IfModule mod_aspdotnet.cpp> # Mount the [Link] /asp application AspNetMount /SampleASP "c:/SampleASP" #/SampleASP is the alias name for [Link] to execute #"c:/SampleASP" is the actual execution of files/folders in that location # Map all requests for /asp to the application files Alias /SampleASP "c:/SampleASP" #maps /SampleASP request to "c:/SampleASP" #now to get to the /SampleASP type [Link] #It'll redirect [Link] to "c:/SampleASP" # Allow [Link] scripts to be executed in the /SampleASP example <Directory "c:/SampleASP"> Options FollowSymlinks ExecCGI Order allow,deny Allow from all DirectoryIndex [Link] [Link] #default the index page to .htm and .aspx </Directory> # For all virtual [Link] webs, we need the aspnet_client files # to serve the client-side helper scripts. AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/[Link]/Framework/v$1.$2.$3/[Link]/$4" <Directory "C:/Windows/[Link]/Framework/v*/[Link]"> Options FollowSymlinks Order allow,deny Allow from all </Directory> </IfModule> #[Link]

Create a directory c:\SampleASP and insert in it the [Link] Restart apache server : Start-> Apache HTTP Server 2.0.54 -> Control Apache Server -> Restart Open Explorer and navigate to [Link] If everything worked fine you should get a nice [Link] page working.

[Link] <%@ Page Language="VB" %> <html> <head> <link rel="stylesheet"href="[Link]"> </head> <body> <center> <form action="[Link]" method="post"> <h3> Name: <input id="Name" type=text> Category: <select id="Category" size=1> <option>One</option> <option>Two</option> <option>Three</option> </select> </h3> <input type=submit value="Lookup"> <p> <% Dim I As Integer For I = 0 to 7 %> <font size="<%=I%>"> Sample [Link] TEST</font> <br> <% Next %> </form> </center> </body> </html>

You might also like