server-side-controls

How to automatically click "update" button in asp.net control ?

I used asp.net server side control to display and modify data in database, the control is just like this one: http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/alleditablecolumns/defaultcs.aspx what I want to do is after I click the "edit" button it will display a "edit" ui, and I want everytime I modify the data in the tex...

asp.net web forms best practice to retrieve dynamic server control values

I populate web form with dynamic list of exams from database. I want user to enter examination marks for each exam. There is list of exam titles and textbox near each title. I create list with repeater control (ViewState is disabled) : <asp:Repeater ID="rptExams" runat="server" onitemdatabound="rptExams_ItemDataBound" > <It...