I need to retrieve data from sql and then assign to about 200 controls. (text boxes and drop down lists)
I am thinking that using dataset to assign them one by one. Something like below. (Stupid way?)
txtBoxMember.text=myDataset.tables(0).rows(0)("MemberName")
Is there another better way to complete it?
Go to the complete details ...