Server Error in '/' Application. Can't find default



am trying to test the following simple program on my Web Server and I get
the message:

Parser Error Message: Could not load type '_Default'.

Source Error:

Line 1: <%@ Page Language="C#" CodeFile="Default.aspx.cs"
Inherits="_Default" %>
Line 2:
Line


The file"default.aspx" is in my root directory on the server. I have tried
putting "default.aspx.cs" in the root directory and also in the AppCode
directory to no avail. I suspect that default.asps.cs is not being found,
but I don't know for sure. Can someone please help?

// File: default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!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>
<h2>this is a test</h2>
</div>
</form>
</body>
</html>

// File:default.aspc.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("<html><head><title>SimpleHandler</title></head><body>");
Response.Write("<h2>The time is ");
Response.Write(DateTime.Now.ToString());
Response.Write(".</h2></body></html>");
}
}


.



Relevant Pages

  • Re: Directory Transversal
    ... It does have a root directory but not like a normal web server. ... It also seams to have problems with spaces I tried %20 but that didn't seam to work so I ended up using PROGRA~1 for Program Files and DOCUME~1 for Documents and Settings and so on. ... Need to secure your web apps NOW? ...
    (Pen-Test)
  • Re: include not working on Linux/Apache server
    ... You're telling PHP to access /skin/Test.php from the root directory of your system, not your web server. ...
    (comp.lang.php)
  • Re: Relative and Absolute Address
    ... I recently began maintenance work on a production web server that is ... in the root directory of a web server. ... of the asp pages are in sub folders and all include the same include file. ...
    (microsoft.public.inetserver.asp.general)
  • Re: Hide Web Folder/ Web Files in ASP System
    ... i am uploading my "First" web server files today. ... i usually send to my clients a link for them to download a certain file ... that i upload to the root directory of my web server space. ...
    (microsoft.public.dotnet.framework.aspnet)