I have been following a tutorial, and have made a contact page. But when I try to debug I get the following 3 error messages. Does anybody know what the errors mean?
1 ASP.contact_aspx.GetTypeHashCode()': no suitable method found to override
c:\Users\RenePedersen\AppData\Local\Temp\Temporary ASP.NETFiles\renedesign\cfc73a41412f916b
File: \App_Web_epukpzey.4.cs
Line: 1734
2 ASP.contact_aspx.ProcessRequest(System.Web.HttpContext)': no suitable method found to override
c:\Users\Rene Pedersen\AppData\Local\Temp\Temporary ASP.NETFiles\renedesign\cfc73a41
\412f916b
File: \App_Web_epukpzey.4.cs
Line: 1739
3 ASP.contact_aspx' does not implement interface member 'System.Web.IHttpHandler.IsReusable'
c:\Users\Rene Pedersen\AppData\Local\Temp\Temporary ASP.NET Files\renedesign\cfc73a41
\412f916b
File: \App_Web_epukpzey.4.cs
Line: 225
Here are the lines of code that the errors refer to:
CODE
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override int GetTypeHashCode() {
return -1526348532;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override void ProcessRequest(System.Web.HttpContext context) {
base.ProcessRequest(context);
}
[System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
public class contact_aspx : global::Contact, System.Web.IHttpHandler {
private static bool @__initialized;
private static object @__fileDependencies;
}