DataGrid的ItemCommand事件不能运行
为什么DataGrid的ItemCommand事件不能触发?
我就写下面这段代码,但是运行时毫无反应,根本就不执行
private void dg1_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
if(()=="add")
{
Response.Write("ok");
}
}