W mojej aplikacji internetowej robię coś takiego, aby odczytać zmienne sesji: if (HttpContext.Current.Session != null && HttpContext.Current.Session["MyVariable"] != null) { string myVariable= (string)HttpContext.Current.Session["MyVariable"]; } Rozumiem, dlaczego ważne jest, aby...