I have got a custom grid view which is bound to a custom linq datasource.
in my code behind can i link a dataset object to that linqdatasource?
<cc:SlicLinqGridView
runat="server"
ID="gv"
DefaultSortDirection="Descending"
DefaultSortExpression="DisplayJobNumber"
AutoGenerateColumns="false"
DataSourceID="lds"
AllowSorting="true"
AllowPaging="true"
PagingPosition="TopAndBottom"
DataKeyNames="JobID"
OnDataBound="gv_DataBound"
OnRowDataBound="gv_RowDataBound"
CssClass="grid"
OnAddToHistory="gv_AddToHistory"
Width="100%">
Linq data source
<asp:LinqDataSource
runat="server" ...
Go to the complete details ...