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

后端 未结 8 1795
死守一世寂寞
死守一世寂寞 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 07:05

    tslib is right, don't do: grdCommunication.DataSourceID = null; or the string.Empty version. You only use the DataSourceID if you're using a SqlDataSource or ObjectDataSource control for your binding.

    It's called "declarative" binding because you're using "declared" controls from on your page. Binding to controls does not require a call to the DataBind() method.

    Because you're DataBinding manually (calling grd.DataBind()) you only set the DataSourrce and then call DataBind().

提交回复
热议问题