Hi,
i like to customize a dynamic data template in order to filter query results to display generaly only datasets of a specific customer.
I don't like to use a drop down list in the list view to filter my query results, cause i dont want a customer to see data of other customers.
I set up the page to use linq to get data from my sql server.
Where can i define such a query filter?
I've tryed to set a where clause to the following section in the list.aspx, but it failed.
<asp:LinqDataSource ID="GridDataSource" runat="server" EnableDelete="true">
<WhereParameters>
<asp:DynamicControlParameter ControlID="FilterRepeater" />
</WhereParameters>
</asp:LinqDataSource>
I'm a novice in programming, so please have patience with me.
Regards
jimslim