D
Des
When I used asp I would use the line rsCustomers("<field name>") which
is easy. I have to
write
sDescription = DataSet.Tables("ITEM").Rows(0)("Description")
sName = DataSet.Tables("ITEM").Rows(0)("Name")
dCost = DataSet.Tables("ITEM").Rows(0)("Cost")
instead of
sDescription = rsCustomers("Description")
sName = rsCustomers("Name")
dCost = rsCustomers("Cost")
Can this be done in dot net ?
is easy. I have to
write
sDescription = DataSet.Tables("ITEM").Rows(0)("Description")
sName = DataSet.Tables("ITEM").Rows(0)("Name")
dCost = DataSet.Tables("ITEM").Rows(0)("Cost")
instead of
sDescription = rsCustomers("Description")
sName = rsCustomers("Name")
dCost = rsCustomers("Cost")
Can this be done in dot net ?