5
Reply

login age catch id through session

aditya immadi

aditya immadi

8 years ago
347
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)