次の方法で共有


Control.Context プロパティ

現在の Web 要求に対するサーバー コントロールに関連付けられている HttpContext オブジェクトを取得します。

Protected Overridable ReadOnly Property Context As HttpContext
[C#]
protected virtual HttpContext Context {get;}
[C++]
protected: __property virtual HttpContext* get_Context();
[JScript]
protected function get Context() : HttpContext;

プロパティ値

現在の要求に関連付けられている指定された HttpContext オブジェクト。

解説

このプロパティは、現在の Web 要求の Context オブジェクトにアクセスできるようにします。このオブジェクトには、 ApplicationSessionRequestResponse 、および現在の HTTP 要求に関する情報を格納しているその他のオブジェクトにアクセスするプロパティが用意されています。さらに、構成情報を取得し、要求のエラーを設定または削除できるようにするためのメソッドも用意されています。

使用例

 
' Use the Context property to write text to the Response object
' associated with the current request.         
Context.Response.Write("<br><br>ParentControl's OnBubbleEvent called.")
 Context.Response.Write(("<br>Source of event is: " + sender.ToString()))

[C#] 
// Use the Context property to write text to the Response object
// associated with the current request.
Context.Response.Write("<br><br>ParentControl's OnBubbleEvent called.");
Context.Response.Write("<br>Source of event is: " + sender.ToString());

[C++] 
// Use the Context property to write text to the Response object
// associated with the current request.
Context->Response->Write(S"<br><br>ParentControl's OnBubbleEvent called.");
Context->Response->Write(String::Concat(S"<br>Source of event is: ", sender));

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 2000, Windows XP Professional, Windows Server 2003 ファミリ

参照

Control クラス | Control メンバ | System.Web.UI 名前空間 | HttpContext | HttpApplication | HttpServerUtility | HttpRequest | HttpResponse