代码之家  ›  专栏  ›  技术社区  ›  Kubi

在SharePoint中以编程方式创建asp:Button和attach事件

  •  1
  • Kubi  · 技术社区  · 14 年前

    代码如下:

    TableCell tcellbutton = new TableCell();
    b.Click += new EventHandler(b_Click);
    b.CausesValidation = true;
    tcellbutton.Controls.Add(b);
    tr.Cells.Add(tcellbutton);
    table.Rows.Add(tr);
    panel1.Controls.Add(table);
    
    void b_Click(object sender, EventArgs e)
    {
        string studentnumber = (sender as Button).ID.ToString().Substring(3, (sender as Button).ID.ToString().Length - 3);
        TextBox t = panel1.FindControl("txt" + studentNumber) as TextBox;
    }
    

    在Sharepoint中是否有其他创建和附加按钮的方法?

    3 回复  |  直到 10 年前
        1
  •  2
  •   abatishchev Karl Johan    14 年前

    好的,这是我解决问题的方法,感谢所有的回复,我正在寻找一种方法,将事件附加到在运行时(初始化后)动态创建的按钮上。希望对别人也有用。

    <script type="text/javascript">
        function ButtonClick(buttonId) {
            alert("Button " + buttonId + " clicked from javascript");
        }
    </script> 
    
    protected void Button_Click(object sender, EventArgs e)
    {
        ClientScript.RegisterClientScriptBlock(this.GetType(), ((Button)sender).ID, "<script>alert('Button_Click');</script>");
        Response.Write(DateTime.Now.ToString() + ": " + ((Button)sender).ID + " was clicked");
    }    
    
    private Button GetButton(string id, string name)
    {
        Button b = new Button();
        b.Text = name;
        b.ID = id;
        b.Click += new EventHandler(Button_Click);
        b.OnClientClick = "ButtonClick('" + b.ClientID + "')";
        return b;
    }
    
        2
  •  1
  •   abatishchev Karl Johan    14 年前

    你应该在 PreInit 事件,代码如下工作正常:

    protected override void OnPreInit(EventArgs e)
    {
        base.OnPreInit(e);
        Button bb = new Button();
        bb.Click += new EventHandler(bb_Click);
        bb.CausesValidation = true;
        bb.ID = "button1";
        Panel1.Controls.Add(bb);
    }
    
    private void bb_Click(object sender, EventArgs e)
    {
        Response.Write("any thing here");
    }
    
        3
  •  1
  •   psubsee2003 Miki Shah    12 年前

    PageLoad 事件。 删除 IsPostBack 对于创建按钮的代码部分,我的建议是。

    页面加载