Asp.net Checkbox values not being retained in popup -


we have asp:checkbox within asp:datalist appears on popup window. problem - checked property values of asp:checkbox not being retained. (the checked property false.)

note - on debugging, page_load method getting called.

<div style="display: none;">     <div id="inline1">         <div class="popupbox coupons">              <asp:datalist...>                 <itemtemplate>                     <asp:checkbox id="chk1" runat="server"/>                     <asp:imagebutton id="btn1" runat="server"/>                 </itemtemplate>          </div>     </div> </div> 


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -