I have a Repeater and also a Button. If I click on my button a new rows need to be created to the repeater in client side (Javascript). I am able to do this with server side, but want to avoid a postback. I am not using an Ajax Updatepanel control. Moreover I am using a table structure in my Repeater.
I have a Repeater and also a Button . If I click on my
Share
Since your
Repeateris just producing a table, here is some javascript to add a row to a table.This will just add it client side though so if you want it to postback you will need to store the data using elements that will post their data.