Hello,
I have an object in which i would get the column names and values. the traditional way of assigning the column value to a control would be like creating an object and assign to the controls.
test t=new test()
test(0)=textbox1.text -> old fashion like wise if i have to assign to 100 controls, boring job.
Can we assign dynamically without doing test(0)=textbox1.text manually.
Note: A user would define the control id.
Can we do something else to reduce the code, in my case i have almost 200 controls to which i should assign the values.