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



The compiler is looking for the CodeBehind file (.aspx.cs) in the same location as the .aspx file:

CodeFile="Default.aspx.cs"

This is a relative path. No folders are specified, so the current folder is assumed. The fact that the compiler can't find the class might be a namespace issue. Try specifying the namespace directly in both the .aspx and the .aspx.cs:

In .aspx:
<%@ Page Language="C#" CodeFile="Default.aspx.cs" Inherits="MyNamespace._Default" %>

In .aspx.cs:
using ...

namespace MyNamespace
{
public partial class _Default ...
}

You will need to make sure that if there is a designer class associated with this page (i.e. Default.aspx.designer.cs) that it is also moved to the same namespace.


"Brian Westcott" <bwestcott@xxxxxxx> wrote in message news:OhHhVz7yHHA.312@xxxxxxxxxxxxxxxxxxxxxxx
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: Error when Load control dynamically with LoadControl
    ... I added this to the aspx page where I use the control: ... There's no namespace by default, but other aspx pages are in the ... public partial class mining_ucPubDetails: System.Web.UI.UserControl ...
    (microsoft.public.dotnet.framework.aspnet.buildingcontrols)
  • Re: ASP .NET 2.0 and Javascript / JS - Select Options disappear
    ... the namespace was automatically generated by VS. ... Just make sure that the Inherits directive in the aspx file will not ... The page has a dropdown control, and a JS function which used HTTP XML ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: automatic namespace importing
    ... ASP.NET is the System.Web namespace. ... HTML code into code that is used to generate DLL. ... And when I say "asp.net parses the aspx page" is different than "asp.net ... i said the csc compiles the output that asp.net generates from the html ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: A question about VS.NET
    ... you can set a "default namespace" property. ... I normally use one *.aspx file but does not matter. ... Imports System ... the code is not colored and no Intelli sense is there. ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Namespaces - broad question
    ... what if I wrote an aspx page that inherited a class ... > The class is already in a namespace - the Inherits attribute is just ... > referencing. ... It isn't creating a new namespace or a new class. ...
    (microsoft.public.dotnet.framework.aspnet)