Disneyland 1972 Love the old s

howto Apache run ASP.NET / ASP.NET 2.0 // bagaimana Apache menjalankan aspnet

apache

howto Apache run ASP.NET / ASP.NET 2.0 // bagaimana Apache menjalankan aspnet

IT Worked !

Even worked with ASP.NET 2.0 Site !

Following are the instruction to make Asp.Net work under apache:

– Install Apache 2.0.44 (MUST use this version)

– Install ModAspDotNet modaspdotnet.so modaspdotnet-2.0.0.msi

Run this msi file from the root of the drive that the Web-Server Suite is installed on.
This will copy mod
aspdotnet.so into your Apache2/modules/ directory, and install/register the Apache.Web.dll---- into the Global Assembly Cache.



– Add at the end of C:\Program Files\Apache Group\Apache2\conf\httpd.conf the following lines

- OR make it as include file from http.doc ,misal: Include "C:\appserv\apache2.2\conf\aspnet.conf"


asp.net

LoadModule aspdotnetmodule "modules/modaspdotnet.so"

AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo


# Mount the ASP.NET /asp application
AspNetMount /SampleASP "c:/SampleASP"
#/SampleASP is the alias name for asp.net 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 http://localhost/SampleASP
#It'll redirect http://localhost/SampleASP to "c:/SampleASP"

# Allow asp.net scripts to be executed in the /SampleASP example

Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx
#default the index page to .htm and .aspx


# For all virtual ASP.NET webs, we need the aspnetclient files
# to serve the client-side helper scripts.
AliasMatch /aspnet
client/systemweb/(\d+)(\d+)(\d+)(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"

Options FollowSymlinks
Order allow,deny
Allow from all


asp.net

– Create a directory c:\SampleASP and insert in it the index.aspx – Restart apache server :
Start-> Apache HTTP Server 2.0.54 ->
Control Apache Server -> Restart – Open Explorer and navigate to http://localhost/SampleASP/index.aspx If everything worked fine you should get a nice asp.net page working.

— index.aspx —

<%@ Page Language="VB" %>







Name:
Category:




<% Dim I As Integer
For I = 0 to 7 %>
"> Sample ASP.NET TEST

<% Next %>





Posted: Sep 11 2005, 11:45 PM

Back to posts
Comments:

Post a comment