So I've got this:\[code\] <asp:ListView runat="server" ID="lvAttributes" DataKeyNames="attribute_id" OnItemDataBound="lvAttributes_ItemDataBound"> <ItemTemplate> <label class="title">product <%# Eval("name") %></label> <asp:ListBox DataTextField="value" DataValueField="tag_id" CssClass="chzn-select" runat="server" ID="lbAttributeTags"></asp:ListBox> <br /> </ItemTemplate> <LayoutTemplate> <div id="itemPlaceholder" runat="server"></div> </LayoutTemplate> </asp:ListView>\[/code\]Now on post back I'd like to get each individual lbAttributeTags selected value. But as you know there might be a single ListBox generated or 100. So how should I approach a solution for this for the many potential possibilities?Thanks in advance.