ASP is running, but all i see is source

I developed a website in Microsoft asp .net 2.0, and all i see is html source code when i go to the site. I configured the default page in my httpd.conf to Default.aspx, but the site is not working... any ideas? The asp managment console says asp is running...
[267 byte] By [Dan_Fuckin_Coopera] at [2007-11-26 19:03:41]
# 1

you are trying to run asp.net (.aspx) on an asp platform a bit like trying to run c++ under c. It won't work. Just like it wouldn't if you tried to run this on NT running IIS V4.

asp will only process .asp files by default so you web server is doing the correct thing and just displaying .aspx files like it would a .txt file it doesn't know what else to do.

(iis 6 will just fail as it defaults to doing nothing).

Duncan

Duncan_Berrimana at 2007-7-9 20:51:05 > top of Java-index,Web & Directory Servers,Web Servers...
# 2
So there's no way to run a .aspx file on a linux based server?
Dan_Fuckin_Coopera at 2007-7-9 20:51:05 > top of Java-index,Web & Directory Servers,Web Servers...
# 3

thats correct.

Different technology

The only way you could run it on a linux based server is to install something like vmware and install windows on a virtual server.

sun one asp was licensed off Microsoft from what I understand way back when and has been supported/developed/ported by sun since.

If you do a search on the forum for aspx or .net you should find some other similar answers and there are no plans to support aspx .

Perhaps Microsoft will port it now that they have an agreement with Suse!

Duncan

Duncan_Berrimana at 2007-7-9 20:51:05 > top of Java-index,Web & Directory Servers,Web Servers...
# 4
Maybe you should have a look at mono: http://www.mono-project.com/ASP.NET
H3Ka at 2007-7-9 20:51:05 > top of Java-index,Web & Directory Servers,Web Servers...