We have an existing form that we now need to adjust, it was designed originally with 15 rows for the end user to have plenty of rows to submit a request, now that the system is being used more and more by other departments, they are requesting that the form
be setup to dynamically add new rows as needed, since they arent allowing me to redo the existing form, i have to work with what is there, which is a HTML table, so i created a method in code behind that will create / add the new row to the table and at this
point its working, BUT only adds 1 row, in other words, the form has 15 default/hardcoded rows with 7 cells(all containing textboxes), when they complete certain fields in the last row(#15) we need to add a new row and trigger the row creation from that row
and so on.. but right now, only 1 row get created, then when i complete the next row, the code is being executed, but overwrites the row that was added first.. so it never gets past 16 rows..
here is the ro ...
Go to the complete details ...