Error    2    'ASP.login_aspx.GetTypeHashCode()': no suitable method found to override   


sometime these type of error come when name of your axps file is different from your class name in aspx.cs file

for example

you have given name to ur aspx file as  ;;;;;;;;        Login.aspx


and in the aspx.cs file you are writing your class name as
L of Login as small then it wil generate the error

public partial class login : System.Web.UI.Page
{

//L of  class file is small then it will generate error " 'ASP.login_aspx.GetTypeHashCode()': no suitable method found to override    ""
}




so whenever this type of error came thn chech ur class name

0 comments:

Post a Comment