QUOTE(gsrc @ Jan 30 2009, 10:37 AM)
I'm not using .aspx to bind the dataset so I'll have to skip that for the now.
As for the save dataset.dataTable part, do you mean using the code below?
CODE
ds.Tables("ROSTERWEEKEND").AcceptChanges()
depending on how u do it,
for database <-> dataset, the must be a link, such as datatable adapter or binding
if u are declaring a dataset via code, most likely u need to loop ur dataset.
eg: dataset = " dataset something from sql"
AcceptChanges() wont help.
i strongly suggest using binding method. as this will help u alot coz binding method will reduce codes and sql.
if u view is combination of alot of 2 or more tables, u can still use binding method, write u update statement in an procedure, use ur store procedure in ur dataset, a simple loop to update ur data.
This post has been edited by unrealweapon: Jan 30 2009, 10:47 AM