Hallo,
ich habe folgende "quotes.aspx" Datei:
XML-Code:
<%@ Page Language="C
#" AutoEventWireup="true" CodeFile="quotes.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>Unbenannte Seite</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<%= jo() %>
</div>
</form>
</body>
</
html>
und diese "quotes.aspx.cs":
Code:
using System;
using System.Configuration;
using
MySql.Data.MySqlClient;
partial class _Default : System.Web.UI.Page
{
static protected void Main()
{
}
protected string jo()
{
MySqlConnection conn = new MySqlConnection();
conn.ConnectionString = @"Server=stdcall.de;Database=nightirc;Uid=silent;Pwd=5366;";
MySqlCommand cmd = new MySqlCommand(@"SELECT * FROM quotes;", conn);
MySqlDataReader dr;
string res = String.Empty;
conn.Open();
dr = cmd.ExecuteReader();
while (dr.Read())
{
res += dr.GetString(2) + "
";
}
conn.Close();
return res;
}
protected void Page_Load(object sender, EventArgs e)
{
}
Wenn ich nun auf
www.nightirc.de/quotes.aspx gehe, meint die Seite:
Zitat:
Error message: Cannot find type _Default
File name: /home/nightirc/quotes.aspx Line: 1
Woher kommt denn der Fehler? Die Klasse in quotes.aspx.cs heisst doch "_Default" oder nicht?