datagrid的模板列里面button控件的Attributes.Add("onclick","alert('');")
DataGrid1_ItemDataBound里写
Button button=(Button)e.Item.FindControl("Button1");
if( button != null )//加上
button.Attributes.Add("onclick","alert('adf');");
Button button=(Button)e.Item.FindControl("Button1");
if( button != null )//加上
button.Attributes.Add("onclick","alert('adf');");