I have website where user need to do some simple step 1 - step 4, so i decided to save all the data into Session Object, on step 2 - step 4 user can go back to previous step to check the form (data will be fill with session)
my question is. can we store new value/object into session while maintain the previous value??
Session["regis"] = student.firstname
// i want object_a value still remain in Session["regis"]
Session["regis"] = student.lastname
or should i make more than 1 Session??
Session["Step1"] = student.firstname
Session["Step2"] = student.lastname