Server Error in '/' Application: Can't find _Default

I 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: <% [at] 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
<% [at] 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>");
}
}
Brian Westcott [ Sa, 21 Juli 2007 19:16 ] [ ID #1774920 ]

Re: Server Error in '/' Application: Can't find _Default

Brian Westcott wrote:
> I 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: <% [at] Page Language="C#" CodeFile="Default.aspx.cs"

There was no way for you to know it (except maybe by browsing through some
of the previous questions in this newsgroup before posting yours - always a
recommended practice) , but this is a classic asp newsgroup. ASP.Net bears
very little resemblance to classic ASP so, while you may be lucky enough to
find a dotnet-knowledgeable person here who can answer your question, you
can eliminate the luck factor by posting your question to a group where
those dotnet-knowledgeable people hang out. I suggest
microsoft.public.dotnet.framework.aspnet.
There are also forums at www.asp.net.com

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
reb01501 [ Sa, 21 Juli 2007 19:25 ] [ ID #1774921 ]

Re: Server Error in '/' Application: Can't find _Default

Thnaks for the reply. I missed the other newsgroup when I was searching so
this seemed to be as close to anything I could find. I appreciate you
pointing me to a more sutiable group.
Brian
"Bob Barrows [MVP]" <reb01501 [at] NOyahoo.SPAMcom> wrote in message
news:uapurw7yHHA.1484 [at] TK2MSFTNGP06.phx.gbl...
> Brian Westcott wrote:
>> I 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: <% [at] Page Language="C#" CodeFile="Default.aspx.cs"
>
> There was no way for you to know it (except maybe by browsing through some
> of the previous questions in this newsgroup before posting yours - always
> a
> recommended practice) , but this is a classic asp newsgroup. ASP.Net bears
> very little resemblance to classic ASP so, while you may be lucky enough
> to
> find a dotnet-knowledgeable person here who can answer your question, you
> can eliminate the luck factor by posting your question to a group where
> those dotnet-knowledgeable people hang out. I suggest
> microsoft.public.dotnet.framework.aspnet.
> There are also forums at www.asp.net.com
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
>
Brian Westcott [ Sa, 21 Juli 2007 19:32 ] [ ID #1774922 ]
Webserver » microsoft.public.inetserver.asp.general » Server Error in '/' Application: Can't find _Default

Vorheriges Thema: Sample Code to Read MSMQ queues
Nächstes Thema: Going back