动态网页问题
<%@ 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>我的第一个ASp。NET网站</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:TextBox ID="TbMessage" runat="server" ForeColor="Red" Width="240px"></asp:TextBox>
<asp:Button ID="BtGreet" runat="server" onclick="BtGreet_Click" Text="问候" Width="108px" />
</form>
</body>
</html>
错误 1 “ASP.default2_aspx.GetTypeHashCode()”: 没有找到适合的方法来重写 c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\web1\4dc6acc0\df9bbd5a\App_Web_g1cutymn.0.cs
错误 2 “ASP.default2_aspx.ProcessRequest(System.Web.HttpContext)”: 没有找到适合的方法来重写 c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\web1\4dc6acc0\df9bbd5a\App_Web_g1cutymn.0.cs
错误 3 “ASP.default2_aspx”不实现接口成员“System.Web.IHttpHandler.IsReusable” c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\web1\4dc6acc0\df9bbd5a\App_Web_g1cutymn.0.cs
这是什么错误!!! --------------------编程问答-------------------- 在Default.aspx.cs里面
class default2 : Page
补充:.NET技术 , C#