ASP.NET on the WAMPSERVER
Posted by: Valon (80.80.165.---)
Date: January 16, 2006 10:52AM

to have installed ASP.NET on wampserver doesn't need to much
because exist ASP mod for that but did is possible from WampServer team to pack this on the future ...

there's is file of this mod

[www.apache.org]

but just need to pack

there's some info ...
[weblogs.asp.net]

Options: ReplyQuote
Re: ASP.NET on the WAMPSERVER
Posted by: Yoshi (---.sympatico.ca)
Date: January 17, 2006 07:51AM

Does that mean i cant run PHP and ASP at the same time ?

Options: ReplyQuote
Re: ASP.NET on the WAMPSERVER
Posted by: Valon (80.80.165.---)
Date: January 24, 2006 02:30PM

no that mean you can run both!!!

Options: ReplyQuote
Re: ASP.NET on the WAMPSERVER
Posted by: Xajel (193.188.105.---)
Date: January 25, 2006 11:06AM

to play with both in same time... see my post here
[forum.wampserver.com]

you can run IIS with WAMP in same time just you have to do two things

1- Starting Apache before IIS.
2- assigning aport to IIS.. so there will be no conflict with apache... and you will be able to launch IIS with [localhost]:{port_here} and wamp with [localhost]

note that this will not let you run both scripts in the same file... as every one will have different folders and settings..

I think Valon way will let you do that ... if you want smiling smiley

Options: ReplyQuote
Re: ASP.NET on the WAMPSERVER
Posted by: Valoni (80.80.165.---)
Date: February 07, 2006 07:34PM

I am not mentioned on that to run APACHE and IIS but only appache with module mod_aspdotnet.so and to be able to load this module into apache that's all

Options: ReplyQuote
Re: ASP.NET on the WAMPSERVER
Posted by: Valoni (80.80.165.---)
Date: February 08, 2006 03:25PM

# donwload last snapshot from [httpd.apache.org]
# take from this file mod_aspdotnet.so
# edit manualy httpd.config
# and find this piece of text
# LoadModule php5_module "c:/wamp/php/php5apache2.dll"
# below continue ...

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

AliasMatch "^/(?i)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
</Directory>

# but before be sure your are copy mod_aspdotnet.so into module folder

Options: ReplyQuote
Re: ASP.NET on the WAMPSERVER
Posted by: BBBwex (89.126.108.---)
Date: April 01, 2013 09:16PM

Hi all.

I'm a Newbie to WAMP.

ok, I've done all the above to get ASP in WAMP.
I keep getting an orange icon when it loads the ASP module.

If I use # in front of where the ASP get loaded in httpd.conf, my icon turns green and I can load my html pages.

I'm just looking to host my website at home and get it to work with ASP. I have a working test ASP website which runs (coded VS2010) from the IDE to Firefox.

Winamp is set to localhost:8181 as I have a NAS with browser remote login so that has port 80

as my html codes are working, I know its not my localhost settings.

below is my HTTPD-ASPDOTNET.CONF file:

# Load asp.net module
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"

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

<IfModule mod_aspdotnet.cpp>
# Mount the asp.net /ASP application
AspNetMount /ASP "C:/wamp/www/ASP"

# Map all requests for /ASP to the application files
Alias /ASP "C:/wamp/www/ASP"

# Allow asp.net scripts to be executed in the www root folder
<directory "c:/wamp/www/ASP">
#Set ASP.net options
Options Indexes FollowSymLinks Includes +ExecCGI
#Set ASP.net permissions
Order allow,deny
Allow from all
#Set asp.net defaulkt index page
DirectoryIndex default.htm default.aspx
</Directory

#Set aspnet_client files
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3.$4/ASP.NETClientFiles/$4"
#Allow ASP.net scripts to be executed in the temp folder
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>

Anybody help to solve this please????

Options: ReplyQuote


Sorry, only registered users may post in this forum.