首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

小弟我在datagird里通过代码增加了一按钮列,可是小弟我确捕获不到它的单击事件

2012-01-11 
我在datagird里通过代码增加了一按钮列,可是我确捕获不到它的单击事件?我在datagird里通过代码增加了一按

我在datagird里通过代码增加了一按钮列,可是我确捕获不到它的单击事件?
我在datagird里通过代码增加了一按钮列,可是我确捕获不到它的单击事件?

ButtonColumn   bc   =   new   ButtonColumn();
bc.ButtonType   =   ButtonColumnType.PushButton;
bc.CommandName   =   "btnSendAgain ";
bc.HeaderText   =   "重发 ";
bc.Text   =   "发送 ";
WorkWithDataGrid1.Columns.Add(bc);


//我用这个代码捕获不到上面增加按钮的事件
private   void   WorkWithDataGrid1_ItemCommand(object   source,   System.Web.UI.WebControls.DataGridCommandEventArgs   e)
{
if   (   e.CommandName   ==   "btnSendAgain ")
{
lblErrorViewer.Text   =   TransactionId.ToString();
}

if   (   e.CommandName   ==   "Select ")
{
lblErrorViewer.Text   =   "Select ";
}
}

//通过属性生成器增加的
<asp:ButtonColumn   Text= "选择 "   CommandName= "Select "> </asp:ButtonColumn>


btnSendAgain这个按钮通过程序增加的捕获不到,Select这个按钮在界面中通过datagrid的属生生成器自动增加的确可以捕获到。这是为什么?



[解决办法]

if(e.Item.ItemType==ListItemType.Item || e.Item.ItemType=ListItemType.AlternatingItem)
{
if ( e.CommandName == "btnSendAgain ")
{
lblErrorViewer.Text = TransactionId.ToString();
}

if ( e.CommandName == "Select ")
{
lblErrorViewer.Text = "Select ";
}
}

热点排行