Link to home
Start Free TrialLog in
Avatar of ccoe1
ccoe1

asked on

filling values into dataset

Hi there,
I created a DataSet manually like this:

DataSet myDataSet = new DataSet("NewDataSet");
DataTable tblUserData = new DataTable("tblUserData");
tblUserData.Columns.Add("User_Name", typeof(string));
myDataSet.Tables.Add(tblUserData);

How can I add manually a value to the column "User_Name"?

Thanks heaps

Chris
ASKER CERTIFIED SOLUTION
Avatar of Mohammed Nasman
Mohammed Nasman
Flag of Palestine, State of image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial