I have done Login page in "asp.net mvc DESIGN pattern".But im getting one runtime error like
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Column 'Emailid' does not belong to table Table.
So,Could any one help me on this
Here is my project solution and
database(table and StoredProcedure
KRayudu VPosted Aug 9, 2012, 3:29 AM
here is my login code
Jignesh TrivediPosted Aug 9, 2012, 12:21 AM
i have download your attachment but in he solution LoninREG project is missing.....
so kindly upload it
i thing all you code is in this project.
also try...
following changes do in DataConnectionandDataHelper project
just change in parameter name(case change)
SqlParameter[] para = new SqlParameter[2];
para[0] = new SqlParameter("@EmailId", frg.EmailId);
para[1] = new SqlParameter("@Password", frg.Password);
// para[2] = new SqlParameter("@ResultMessage", SqlDbType.VarChar, 50);
retval = SqlHelper.ExecuteDataset(connection, CommandType.StoredProcedure, "sel_login7", para).Tables[0];
hope this will help you.