I was recently given a new task to download a site created by someone else. But I am absolutely not familiar with the Internet. The website is in ASP.NET, C #. The code itself is not hard to understand except for the Session object. I do not understand where, how and why it was used. Can someone explain the use of a Session object with a possible example?
PS What do these two lines mean?
lblPensValue.Text = sh.pensDec((string)Session["connSTR"], 113, 23);
and
if ((string)Session["connSTR"] == null)
source
share