This might be a silly question with an easy answer, but I cannot seem to find any info on it.
I am creating a webapp for a clients intrant, and I am using session variables, which start as they log in.
EG:
Session["ConsultantFirstname"] = adAuth.getFirstName();
Session["ConsultantLastName"] = adAuth.getLastName();
//Then I also have a reader on page load which creates these...
while (reader.Read())
{
Session["Department"] = reader[1].ToString();
Session["Channelid"] = reader[2].ToString();
Session["EmailAddress"] = reader[3].ToString();
Session["PrimaryTerritory"] = reader[4].ToString();
}
My question is this... How do I see in the browser what session variables have been created? (If I select "Inspect element" > "Resources" > Session storage.. Shouldn't they be there?) I'm quite sure I read a tutorial on this a while ago, but I cannot seem to find it now.
Do I need to add some additional code?