Hello Sir,
thank you for replies on form view. I am working on it.
But I have one another query that I wanna use dropdown list instead of repeater. I have used dropdown list and bound it to the objectdata source like
Code:
<asp:DropDownList ID="lstCategoryId" runat="server" AutoPostBack="True" DataSourceID="ObjectDataSource1"
DataTextField="Description" DataValueField="Id" AppendDataBoundItems="True">
<asp:ListItem Value="">Please Choose Category</asp:ListItem>
</asp:DropDownList>
And I wanna bound it with datalist control, so that whenever I choose any category from dropdown list then only corresponding items of particular items are filled in data list.
Any suggestion is most appreciated......
Or is there any other control where I can use dropdown list with other control providing same functionality as with datalist.
Thank you......