Hello,
I wanted to test second solution from: http://www.telerik.com/help/aspnet-ajax/grid-performing-batch-updates.html
Client side editing.
In code:
I have issue with DataSourceHelperCS. How I can avoid mentioned error?
I wanted to test second solution from: http://www.telerik.com/help/aspnet-ajax/grid-performing-batch-updates.html
Client side editing.
In code:
public
DataTable ProductsTable
{
get
{
DataTable res = (DataTable)
this
.Session[
"ProductsTable"
];
if
(res ==
null
)
{
res = DataSourceHelperCS.GetDataTable(
"SELECT [ProductID], [ProductName], [Discontinued] FROM [Products]"
);
this
.Session[
"ProductsTable"
] = res;
}
return
res;
}
}
I have issue with DataSourceHelperCS. How I can avoid mentioned error?