dou2 -
Joined: 15 Feb 2009 Posts: 1
|
Posted: Sun Feb 15, 2009 9:58 pm Post subject: ASP commands not parsed into html |
|
|
Hi,
I am trying to run a very simple aspx file with Abyss web server but can't make it. I have spent hours looking for an answer, to no avail.
I have 1 single page in my "website" developed in Visual Web Developer 2008 Express Edition.
When I run it through the server, I receive the html code below. Being no specialist, I infer that I should never be seeing "runat server' in the generated html.
I have well followed the asp.net installation instructions (my web root is the same as my asp application directory, so I have put "/" and "2.0 -3.5" in this respect)
Any one has an idea what I did wrong ? Is the standard web.config file that comes from Visual Studio OK ? Help would be very much appreciated !
Thanks,
Ed
Below the output html, strictly identical to aspx file
Code: | <%@ Page Language="VB" AutoEventWireup="false" CodeFile="temps2.aspx.vb" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
|
|
|