Dynamic Row Genration with lable and textboxes in a table
I want to create a dynamic table in which i can add dynamic row on click a link (Example - Add Row ) not using any button click event and in this row i want a lable and a textbox with (runat = server ) means server control . after submitting that data when i open this page for editting how much record i entered that much row should me present there.
Amit ChoudharyPosted Aug 8, 2011, 3:01 AM
you said you don't want to use server side event. Well, I suggest you to use Ajax to send the request on server either by button click or watever. you can add rows using javascript in your grid or List you are using but to update this information on server you've to send the added rows to server to sync the client UI and control state at server side.
I hope this make sense to you.