Hmmmm, I installed photoroom on my xp/pro IIS 5.0 server. When I go to localhost/photoroom, what I get is the default.aspx page being displayed rather than executed. IN other words, I see this...
<%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="false" Inherits="PhotoRoom._default" %>
<%@ OutputCache Duration="3600" VaryByParam="*" %>
<%@ Import namespace="PhotoRoom.components" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
etc.....
This is obviously something simple I haven't configured on my server, but what?
Thanks for the help
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I did have .NET Framework 1.1 installed. I keep thinking that my web server is supposed to be running the aspx files as a script and instead it's simply sending them back to the client computer without any processing. Unfortunately, I don't really know how this is supposed to occur. Obviously, I'm not a seasoned web admin :)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Try re-registering ASP.NET by running aspnet_regiis.exe. It can be found in your %windows%\Microsoft.NET\Framework\v1.1.4322 directory. This will configure IIS to support ASP.NET.
-KIRBY
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hmmmm, I installed photoroom on my xp/pro IIS 5.0 server. When I go to localhost/photoroom, what I get is the default.aspx page being displayed rather than executed. IN other words, I see this...
<%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="false" Inherits="PhotoRoom._default" %>
<%@ OutputCache Duration="3600" VaryByParam="*" %>
<%@ Import namespace="PhotoRoom.components" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
etc.....
This is obviously something simple I haven't configured on my server, but what?
Thanks for the help
Do you have the .NET Framework installed?
http://msdn.microsoft.com/netframework/technologyinfo/howtoget/default.aspx
I did have .NET Framework 1.1 installed. I keep thinking that my web server is supposed to be running the aspx files as a script and instead it's simply sending them back to the client computer without any processing. Unfortunately, I don't really know how this is supposed to occur. Obviously, I'm not a seasoned web admin :)
http://groups.google.dk/groups?hl=da&lr=&ie=UTF-8&oe=UTF-8&q=aspx+code+not+running+xp+pro&btnG=Google-s%C3%B8gning
maybe???
http://groups.google.dk/groups?hl=da&lr=&ie=UTF-8&oe=UTF-8&threadm=uoiFleUwCHA.2372%40TK2MSFTNGP09&rnum=4&prev=/groups%3Fq%3Daspx%2Bcode%2Bnot%2Brunning%2Bxp%26hl%3Dda%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26selm%3DuoiFleUwCHA.2372%2540TK2MSFTNGP09%26rnum%3D4
Try re-registering ASP.NET by running aspnet_regiis.exe. It can be found in your %windows%\Microsoft.NET\Framework\v1.1.4322 directory. This will configure IIS to support ASP.NET.
-KIRBY
Perfect. aspnet_regiis.exe -i fixed the problem. Thanks for the help all...