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

后端 未结 8 1796
死守一世寂寞
死守一世寂寞 2021-02-15 06:11

\"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

8条回答
  •  我在风中等你
    2021-02-15 06:54

    Try this:

    DataSet dsActivity = objCompany.GetActivityDetails();
    grdCommunication.DataSource = dsActivity.Tables[0];
    grdCommunication.DataBind();
    

提交回复
热议问题