Posted on: 12/26/2014 1:26:09 AM | Views : 478

Hi,
I have the next asp code:
<asp:Repeater ID="rprTT" runat="server" OnItemDataBound="rprTT_ItemDataBound"> <ItemTemplate> <table> <tr><td><asp:Label ID="LblSKUName" runat="server" Width="250px" Text='<%# Eval("SKUName")%>' /> <asp:HiddenField ID="hdnSKUID" runat="server" Value='<%# Eval("SKUID")%>' /></td> <td><asp:DropDownList ID="lbVendorList" runat="server"> </asp:DropDownList> </tr> </table> </ItemTemplate> </asp:Repeater>
My target is getting the selected value from drop box also... but I can't..  I fill my repeater this way:
protected void rprTT_ItemDataBound(object sender, RepeaterItemEventArgs e) { DropDownList lbVendorName = (DropDownList)e.Item.FindControl ...

Go to the complete details ...