2

我正在动态创建一个表,每一行将包含一个按钮,这个按钮将调用一个函数,每个按钮将处理不同的参数,例如,

    string Parameter1 = "MyValue";
    string Parameter2 = "MyOthervalue";

    HtmlInputButton input = new HtmlInputButton();
    input.ID = "Button1";
    input.Value = "button";
    input.Attributes.Add("onclick", "MyFunction(" + Parameter1 + "," + Parameter2 + ");");

    td = new HtmlTableCell();
    td.Align = "center";
    td.Controls.Add(input);
    tr.Cells.Add(td);

当用户单击按钮时,我需要运行 MyFunction 然后刷新页面以查看更改。

我知道也许我可以打开第二个页面并在 URL 中发送参数,但我想在同一页面中使用代码,然后重新加载页面。

什么是最好的方法。

谢谢,

编辑。

我能够通过以下方式解决它:

    input = new Button();
    input.Text = "Click Me";
    input.CommandArgument = "3|Parameter3";
    input.Command += new CommandEventHandler(Button_Handler);

    td = new HtmlTableCell();
    td.Align = "center";
    td.Controls.Add(input);

    tr.Cells.Add(td);
    tbTable.Rows.Add(tr);



public void Button_Handler(object sender, CommandEventArgs e)
{
    Button mybutton = (Button)sender;
    string[] Parameters = e.CommandArgument.ToString().Split('|');
    mybutton.Text = Parameters[0] + "-" + Parameters[1];
    //Call MyFunction(Parameters[0], Parameters[1]);

}
4

3 回答 3

1

我有一个技巧,您可以使用隐藏按钮和隐藏字段:

HTML:

<script type="text/javascript">
    function MyFunction() {
        // do something
        document.getElementById("<%= hid.ClientID %>").value = "some value";

        // trigger hidden button click
        document.getElementById("<%= hiddenButton.ClientID %>").click();
    }
</script>

<asp:HiddenField ID="hid" runat="server" />
<asp:Button ID="hiddenButton" runat="server" OnClick="hiddenButton_Click" style="display:none" />

后面的代码:

protected void hiddenButton_Click(object sender, EventArgs e)
{
     // your business goes here
     string value = hid.Value;
}
于 2013-01-11T07:42:41.550 回答
1

如果 MyFunction 是一个 javascript 函数,您可以location.reload()在其末尾添加以重新加载页面。

于 2013-01-11T07:45:05.400 回答
1

在这里,我制作了一些关于如何动态添加点击事件的示例代码:

  void Page_Load(Object sender, EventArgs e)
  {
    HtmlInputButton NewButtonControl = new HtmlInputButton("submit");
    NewButtonControl.ID = "NewButtonControl";
    NewButtonControl.Value = "Click Me";

    // Create an EventHandler delegate for the method you want to handle the event
    // and then add it to the list of methods called when the event is raised.
    NewButtonControl.ServerClick += new System.EventHandler(this.Button_Click);

    // Add the new HtmlInputButton control to the Controls collection of the
    // PlaceHolder control. 
    ControlContainer.Controls.Add(NewButtonControl);
  }

  void Button_Click(Object sender, EventArgs e)
  {
    // Display a simple message. 
    Message.InnerHtml = "Thank you for clicking the button.";
  }

要刷新页面,您可以调用 Javascript 函数,如下所示:

<script type="text/javascript">
  function reloadPage()
  {
    window.location.reload()
  }
</script>

或试试这个:

Response.Redirect(Request.Url.AbsoluteUri);

我希望它有帮助

于 2013-01-11T07:55:16.263 回答