- 개별 HTTP 요청에 대한 HTTP 관련 정보를 모두 캡슐화 httpContext.Current 속성 : 현재 HTTP 요청에 대한 HttpContext 개체를 가져오거나 설정 |
protected void Page_Load(object sender, EventArgs e) { // 화면 출력 //[1] Page 레벨 Response.Write("안녕<br />"); //[2] Component 레벨 : 클래스(App_Code, *.DLL) HttpContext.Current.Response.Write("방가<br />"); HttpContext context = HttpContext.Current; context.Response.Write("또봐<br />"); //[3] 호출 Msg.Show(); }
Show() 메서드 생성 public static void Show() { // Response.Write(), Response.Cookies[] HttpContext.Current.Response.Write HttpContext context = HttpContext.Current; context.Response.Cookies["A"].Value = "A"; context.Response.Cookies["B"].Value = "B"; } |
'.Net Project > ASP.NET 3.5 Sp1' 카테고리의 다른 글
52장 상태관리 클라이언트측_(ViewState, Cookies, QueryString) (0) | 2009.10.27 |
---|---|
51장 상태관리 서버측_(Application, Session, Cache) (0) | 2009.10.27 |
49장 추적(Trace) (0) | 2009.10.27 |
48장 데이터 컨트롤(Repeater) (0) | 2009.10.27 |
47장 데이터 컨트롤(FormView) (0) | 2009.10.27 |