Hi
I have already databing repeat . Can i add more records after that
Thanks
Hi
I have already databing repeat . Can i add more records after that
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tuhin PaulPosted Jun 10, 2023, 11:27 AM
Retrieve the new records from your data source or generate them programmatically.
Add the new records to the data source that is bound to your repeater control. The exact process for adding records to the data source depends on the programming language and framework you are using.
Rebind the repeater control to the updated data source. This will update the repeater with the new records.
Tuhin PaulPosted Jun 10, 2023, 11:26 AM
YourDataObject represents the type of your data object or entity. GetNewRecords() is a method that retrieves or generates the new records to be added. yourRepeater is the ID or reference to your repeater control.