G
gh
I am using a SQLDataSource in an ASP.NET 2.0 web app. I want to loop
through datarows, in the result set, to read the and write values to
acouple of the fields. I can' t locate any properties for the datarow
in the control. How do I access the datarow properties in this control
to loop through or is there another way.
foreach(datarow dr in ...)
{
x = dr["Amt"];
dr["Bal"] = x * .06;
}
TIA
through datarows, in the result set, to read the and write values to
acouple of the fields. I can' t locate any properties for the datarow
in the control. How do I access the datarow properties in this control
to loop through or is there another way.
foreach(datarow dr in ...)
{
x = dr["Amt"];
dr["Bal"] = x * .06;
}
TIA