ポストバックで、Page_Initイベントでポストバックが発生するコントロールを確認するにはどうすればよいですか。
protected void Page_Init(object sender, EventArgs e)
{
//need to check here which control cause postback?
}
ありがとう
ポストバックコントロールを取得する方法について、いくつかの素晴らしいアドバイスと方法が既に提案されていることがわかります。しかし、ポストバックコントロールIDを取得するメソッドを備えた別のWebページ( Mahesh blog )を見つけました。
拡張クラスにするなど、少し修正してここに投稿します。うまくいけば、その方法でより便利です。
/// <summary>
/// Gets the ID of the post back control.
///
/// See: http://geekswithblogs.net/mahesh/archive/2006/06/27/83264.aspx
/// </summary>
/// <param name = "page">The page.</param>
/// <returns></returns>
public static string GetPostBackControlId(this Page page)
{
if (!page.IsPostBack)
return string.Empty;
Control control = null;
// first we will check the "__EVENTTARGET" because if post back made by the controls
// which used "_doPostBack" function also available in Request.Form collection.
string controlName = page.Request.Params["__EVENTTARGET"];
if (!String.IsNullOrEmpty(controlName))
{
control = page.FindControl(controlName);
}
else
{
// if __EVENTTARGET is null, the control is a button type and we need to
// iterate over the form collection to find it
// ReSharper disable TooWideLocalVariableScope
string controlId;
Control foundControl;
// ReSharper restore TooWideLocalVariableScope
foreach (string ctl in page.Request.Form)
{
// handle ImageButton they having an additional "quasi-property"
// in their Id which identifies mouse x and y coordinates
if (ctl.EndsWith(".x") || ctl.EndsWith(".y"))
{
controlId = ctl.Substring(0, ctl.Length - 2);
foundControl = page.FindControl(controlId);
}
else
{
foundControl = page.FindControl(ctl);
}
if (!(foundControl is IButtonControl)) continue;
control = foundControl;
break;
}
}
return control == null ? String.Empty : control.ID;
}
更新(2016-07-22):Button
およびImageButton
の型チェックがIButtonControl
を使用すると、サードパーティのコントロールからのポストバックを認識できます。
あなたのためのトリックを行うかもしれないいくつかのコードはここにあります( Ryan Farley's blog )
public static Control GetPostBackControl(Page page)
{
Control control = null;
string ctrlname = page.Request.Params.Get("__EVENTTARGET");
if (ctrlname != null && ctrlname != string.Empty)
{
control = page.FindControl(ctrlname);
}
else
{
foreach (string ctl in page.Request.Form)
{
Control c = page.FindControl(ctl);
if (c is System.Web.UI.WebControls.Button)
{
control = c;
break;
}
}
}
return control;
}
フォームパラメータで直接、または
string controlName = this.Request.Params.Get("__EVENTTARGET");
編集:コントロールがポストバックを引き起こしたかどうかを確認するには(手動で):
// input Image with name="imageName"
if (this.Request["imageName"+".x"] != null) ...;//caused postBack
// Other input with name="name"
if (this.Request["name"] != null) ...;//caused postBack
また、すべてのコントロールを反復処理し、上記のコードを使用していずれかのコントロールがpostBackを引き起こしたかどうかを確認することもできます。
ポストバックの原因となったコントロールを確認する必要がある場合は、_["__EVENTTARGET"]
_を目的のコントロールと直接比較するだけで済みます。
_if (specialControl.UniqueID == Page.Request.Params["__EVENTTARGET"])
{
/*do special stuff*/
}
_
これは、とにかくGetPostBackControl(...)
拡張メソッドの結果を比較するだけだと仮定しています。すべての状況を処理できるわけではありませんが、機能する場合はより簡単です。さらに、最初は気にしなかったコントロールを探してページを探し回ることはありません。
if (Request.Params["__EVENTTARGET"] != null)
{
if (Request.Params["__EVENTTARGET"].ToString().Contains("myControlID"))
{
DoWhateverYouWant();
}
}
サーバーコントロールであると仮定すると、_Request["ButtonName"]
_を使用できます
特定のボタンがクリックされたかどうかを確認するには:if (Request["ButtonName"] != null)
以前の回答に加えて、Request.Params["__EVENTTARGET"]
を使用するには、オプションを設定する必要があります。
buttonName.UseSubmitBehavior = false;
コントロールの正確な名前を取得するには、次を使用します。
string controlName = Page.FindControl(Page.Request.Params["__EVENTTARGET"]).ID;