using System;
using System.Collections.Generic;
namespace SessionDemo
{
public static class SessionManager
    {
private static Dictionary<string, object> session = new Dictionary<string, object>();
public static Dictionary<string, object> Session
        {
get { return SessionManager.session; }
set { SessionManager.session = value; }
        }
    }
}
SETTING :
SessionManager.Session["uname"] = "kunal";
GETTING :
txbUname.Text = SessionManager.Session["uname"].ToString();

'WPF' 카테고리의 다른 글

Using Value Converters  (0) 2010.01.02
DataGrid 템플릿  (0) 2010.01.02
간단한 data grid 사용법  (0) 2010.01.02
쿠키사용법  (0) 2009.12.15
웹 페이지에 Silverlight 추가  (0) 2009.12.15
WCF 웹서비스를 이용한 데이터 바인딩  (0) 2009.12.15
ResizeGrip - Resizing (Mostly Custom) Windows  (0) 2009.12.15
SplashScreen 만들기  (0) 2009.12.15
초간단 실버라이트 웹서비스 사용하기  (0) 2009.06.30
컨테이너(Container)  (0) 2009.06.03

+ Recent posts