JhonyMega 0 Denunciar post Postado Outubro 25, 2010 Bom pessoal to fazendo uma área ADM onde o administrador podera ver que esta online. Como faço para listar as seções que estão abertas na web applications. Compartilhar este post Link para o post Compartilhar em outros sites
Ivan.Teles 23 Denunciar post Postado Outubro 25, 2010 if (HttpContext.Current.Session != null) { for(int i = 0; i < HttpContext.Current.Session.Count; i++) { string key = HttpContext.Current.Session.Keys; string sessao = HttpContext.Current.Session.ToString()); } } Compartilhar este post Link para o post Compartilhar em outros sites
JhonyMega 0 Denunciar post Postado Outubro 26, 2010 if (HttpContext.Current.Session != null) { for(int i = 0; i < HttpContext.Current.Session.Count; i++) { string key = HttpContext.Current.Session.Keys[i]; string sessao = HttpContext.Current.Session[i].ToString()); } } Agora sim ... obrigado. Compartilhar este post Link para o post Compartilhar em outros sites