当前位置: 编程技术>.net/c#/asp.net
Repeater事件OnItemCommand取得行内控件的方法
来源: 互联网 发布时间:2014-08-25
本文导语: 记录一下,主要是这句:TextBox txtNum = e.Item.FindControl("txtNum") as TextBox; Repeater真是太强了,太灵活。除了Repeater别的都不用。 代码如下: 代码如下:protected void rptList_ItemCommand(object source, RepeaterCommandEv...
记录一下,主要是这句:
TextBox txtNum = e.Item.FindControl("txtNum") as TextBox;
Repeater真是太强了,太灵活。除了Repeater别的都不用。
代码如下:
代码如下:
protected void rptList_ItemCommand(object source, RepeaterCommandEventArgs e)
{
switch (e.CommandName)
{
case "update":
string arg = e.CommandArgument.ToString();//取得参数
//找到激发事件的行内控件,这个很有用,能将更多需要的参数值传递过来。
TextBox txtNum = e.Item.FindControl("txtNum") as TextBox;
//下面执行业务逻辑
string jsStr = "alert('删除成功!" + txtNum.Text + "')";
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", jsStr,false);
break;
}
Bind();
}