aditya immadi

aditya immadi

  • NA
  • 215
  • 21.9k

login age catch id through session

May 17 2016 4:48 AM
Hai all i wrote this lines for catching id in registration page 
 
then i m getting this eror
 
 
int i = v.InsertUserRegistration(user.Name, user.Gender, user.Education, user.MobileNumber, user.EmailId, user.IsActive);
//storing data in session for nexpage
if (i != 0)
{
name = Session["Name"].ToString();---object referene not set to instance of object
userid = (int)Session["Id"];
Email = Session["EmailId"].ToString();
}
TempData["notice"] = "Successfully registered";
return RedirectToAction("CreatePassword");
}
i need to pass the id to anothe page ... any help
 
TIA 
 

Answers (5)