0

先頭ページ

<html >
<head >
</head>
<body>
<form id="form1" runat="server">

<asp:Button ID="btnSubmit" runat="server" 
            OnClick="btnSubmit_Click"            
            Text="Submit to Second Page" />
</div>
</form>
</body>

btnSubmit_Click イベント

Response.redirect("Page2.aspx");

Page2 の Page Load で、どのボタンがポストバックを引き起こすかを見つける方法は?

4

4 に答える 4

1

イベントでbtnSubmit_Clickクエリ文字列パラメータを渡し、Page2 でクエリ文字列パラメータを取得できます。

Response.redirect("Page2.aspx?btnName=button1");

Page2.aspx ページの Load イベントで

protected void Page_Load(object sender, EventArgs e)
{
      string queryString = Request.QueryString["btnName"].ToString();
      //Here perform your action
}
于 2013-06-19T13:09:05.890 に答える
0

投稿がどのボタンから来たかという情報が本当に必要な場合は、Cross-Page Postingを実装します。例の良い記事です。QueryString を使用するよりもその方法をお勧めします (実装が少し速いかもしれません)。

于 2013-06-19T13:25:22.523 に答える
0

この解決策を試してみませんか? here :ポストバック時に、どのコントロールが Page_Init イベントでポストバックを引き起こすかを確認するにはどうすればよいですか

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 Button || foundControl is ImageButton)) continue;

            control = foundControl;
            break;
        }
    }

    return control == null ? String.Empty : control.ID;
}
于 2013-09-23T08:07:43.693 に答える
0

では、Page_Loadどのボタンが を引き起こしたかを見つけることができませんPostBack。2ページ目の視点では、それはポストでさえありません。まったく新しい依頼です。これが Response.Redirect の動作であり、クライアント ブラウザに新しい Request を実行するように指示します。

本当に知る必要がある場合は、URL パラメーターを追加してクエリ文字列として取得できます。Pankaj Agarwal が彼の答えを示しています。

Sessionコメント後の編集: クエリ文字列に加えて、onClickで like を使用できます。

Session["POST-CONTROL"] = "button2"

ではPage_Load、次のように読みます。

var postControl = Session["POST-CONTROL"] != null ? Session["POST-CONTROL"].toString() : "";
于 2013-06-19T13:11:01.557 に答える