Datagrid ItemCommand
-
Asp.Net datagrid I want to associate this event OnItemCommand="dgModule_ItemCommand", but when I compile its give me error message "dgModule_ItemCommand(object, System.Web.UI.WebControls.DataListCommandEventArgs)' does not match delegate 'void System.Web.UI.WebControls.DataGridCommandEventHandler(object, System.Web.UI.WebControls.DataGridCommandEventArgs)'" Surprisingly in some of the webpage it does not give this error here is the code snippet protected System.Web.UI.WebControls.DataGrid dgModule; dgModule.ItemCommand += new DataGridCommandEventHandler(this.dgModule_ItemCommand); public void dgModule_ItemCommand(DataListCommandEventArgs e) { int iCount=e.Item.ItemIndex +1; //other lines of code here } Anyone is having clue on that Thanks in advance Share knowledge to enhance your learning
-
Asp.Net datagrid I want to associate this event OnItemCommand="dgModule_ItemCommand", but when I compile its give me error message "dgModule_ItemCommand(object, System.Web.UI.WebControls.DataListCommandEventArgs)' does not match delegate 'void System.Web.UI.WebControls.DataGridCommandEventHandler(object, System.Web.UI.WebControls.DataGridCommandEventArgs)'" Surprisingly in some of the webpage it does not give this error here is the code snippet protected System.Web.UI.WebControls.DataGrid dgModule; dgModule.ItemCommand += new DataGridCommandEventHandler(this.dgModule_ItemCommand); public void dgModule_ItemCommand(DataListCommandEventArgs e) { int iCount=e.Item.ItemIndex +1; //other lines of code here } Anyone is having clue on that Thanks in advance Share knowledge to enhance your learning
You have DataListCommandEventArgs, instead of DataGridCommandEventArgs (you got confused betwwen DataList and DataGrid). The error message is correct, just look at it...
Neel07 wrote:
"dgModule_ItemCommand(object, System.Web.UI.WebControls.DataListCommandEventArgs)' does not match delegate 'void System.Web.UI.WebControls.DataGridCommandEventHandler(object, System.Web.UI.WebControls.DataGridCommandEventArgs)'"
Abi ( Abishek Bellamkonda ) My Blog: http://abibaby.blogspot.com =(:*