Now am using repeater control and create three labels and corresponding textbox. I want to save this value in single table column value. what can I do? I don’t have any idea to save. please help me and give me an example also.
Now am using repeater control and create three labels and corresponding textbox. I want
Share
Hey I assume by single table column you mean single column in database.
Just run a foreach loop on your repeater on your Save event & reference each item of the repeater, save each item’s desired value in a string & add a comma separator, something like this. Hope it helps