Forum Moderators: phranque
What I want to do is develop a simple (web) form with input boxes that I will dynamically populate with the data from my database. Then I will have an opportunity to change the info and click on the 'Update' button which will then update the database. Pretty straight forward.....
So far I've managed to retrieve my data, loop thru it, and use .InnerHtml to display it. But I have to use the regular html version (<input....>) of the input box. When I use <asp:TextBox...> it doesn't get processed on the server side. And this is where I am stuck. I don't know how to access this client side data via ASP.NET. Then I am also not sure if I'm doing this the right way or not. Can anyone explain to me how all of this done?