Posted on: 2/28/2014 1:44:49 PM | Views : 547

i have two drodownlist  which shows minimum and maximum price
i wants to show all products ranges between this two drodownlist value using RangeExpression
this both drodownlist are in master page,now when i click on submit button all this product should be shown in another page within that price range
so ,what should i do,i i should use querystring than what should i pass in it
i have done this
<asp:LinqDataSource ID="LinqDataSource1" runat="server" ContextTypeName="linqextenderDataContext" EntityTypeName="" TableName="Products" Where="Category == @Category"> <WhereParameters> <asp:ControlParameter ControlID="dropcategory" Name="Category" PropertyName="SelectedValue" Type="String" /> ...

Go to the complete details ...