- HTTPContext.Current 속성 : 현재 HTTP 요청에 대한 HTTPContext 객체를 가져오거나 설정
바로 코드 비하인드 페이지로 이동
FrmHttpContext.aspx.cs |
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(); } |
Msg.cs |
public class Msg { public static void Show() { // Response.Write(), Response.Cookies[] HttpContext.Current.Response.Write("컴포넌트 레벨에서 출력<br />"); HttpContext context = HttpContext.Current; context.Response.Cookies["A"].Value
= "A"; context.Response.Cookies["B"].Value
= "B"; } } // 클래스 레벨로 HttpContext를 통해서 요청해라 |
결과화면 |
[그림53-1] |
'ASP.NET' 카테고리의 다른 글
55.C# ASP.NET - 서버 측 ( Session ) [상태관리3] (0) | 2009.10.20 |
---|---|
54.C# ASP.NET - 서버 측 ( Application ) [상태관리2] (0) | 2009.10.20 |
52.C# ASP.NET - Trace 추적 (0) | 2009.10.20 |
51.C# ASP.NET - Repeater [DataControl 4] (0) | 2009.10.20 |
50.C# ASP.NET - DataList [DataControl 3] (0) | 2009.10.20 |
Comments