Sat, 01/09/2010 - 22:17
GetTypeHashCode()': no suitable method found to override
How to remove this error. Please help
Tue, 11/22/2011 - 15:40
#2
public partial class _Login : System.Web.UI.Page
No Missing.but same error message is occured
You must have missed to inherit from System.web.UI.Page.
public partial class _Login : System.Web.UI.PageEvery webpage should inherit "System.Web.UI.Page" so it can override the above mentioned method.
I hope this will help.