i've got view.ascx page , view.ascx.cs page. in .ascx file i've got possibility insert lot of capi denunciati (this part made select menù animal specie (like anatra, cavallo, gallo, ecc...) , lot of input text field , other 2 select menù. @ end, there button than, on click, create field of capi denunciati).
this 1 select menù in capi denunciati
<select id="moddistruzioneform" name="moddistruzioneform" style="display: none"> <asp:repeater runat="server" id="repmoddistruzione"> <itemtemplate> <option value="<%# eval("key") %>"> <%# eval("value") %></option> </itemtemplate> </asp:repeater> </select>
because don't know number of capi denunciati tha user insert, ask: possibile insert <asp:repeater>
more times same id? if use way work, in ascx.cs file need call function popolate repeater on 1 id (this function catch value db).
thank help!
(please don't answer "id unique", know...)