Add the following entries to the end of the C:\Program Files\Apache Group\Apache2\conf\httpd.conf file:
#---------------------------------------------------------------------------
# ASP.Net Functionality Enablement
#
#---------------------------------------------------------------------------
LoadModule aspdotnet_module "modules/mod_aspdotnet.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 /RJSDIWServer "C:\inetpub\wwwroot\RJSDIWServer"
#---------------------------------------------------------------------------
#/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 /RJSDIWServer "C:\inetpub\wwwroot\RJSDIWServer"
#---------------------------------------------------------------------------
#maps /RJSDIWServer request to "C:\inetpub\wwwroot\RJSDIWServer"
#now to get to the /RJSDIWServer type http://localhost/RJSDIWServer
#It'll redirect http://localhost/SampleASP to "C:\inetpub\wwwroot\RJSDIWServer"
#---------------------------------------------------------------------------
#---------------------------------------------------------------------------
# Allow asp.net scripts to be executed in the /RJSDIWServer
#---------------------------------------------------------------------------
<Directory "C:\inetpub\wwwroot\RJSDIWServer">
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 aspnet_client files
# to serve the client-side helper scripts.
# Set up an alias match to the .Net Runtimes
#---------------------------------------------------------------------------
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
#---------------------------------------------------------------------------
#
#---------------------------------------------------------------------------