“Both DataSource and DataSourceID are defined” error using ASP.NET GridView

后端 未结 7 2339
面向向阳花
面向向阳花 2021-02-15 06:38

\"Both DataSource and DataSourceID are defined on \'grdCommunication\'. Remove one definition.\"

I just got this error today, the code has been working until this after

7条回答
  •  星月不相逢
    2021-02-15 07:05

    Replace this code before this grdCommunication.DataSource = dsActivity;

    grdCommunication.DataBind();
    grdCommunication.DataSourceID="";
    

提交回复
热议问题