A
Arjen
Hi,
This are the lines I have now:
SqlDataSource1.SelectCommand = "SELECT TOP (1) RangeId FROM myTable";
SqlDataSource1.SelectParameters.Add(new Parameter("RangeId",
TypeCode.Int32));
int rangeId = ...
How do I get the result from the database in the variable? I tried a lot of
samples on the internet but could not find the solution.
Thanks!
Arjen
This are the lines I have now:
SqlDataSource1.SelectCommand = "SELECT TOP (1) RangeId FROM myTable";
SqlDataSource1.SelectParameters.Add(new Parameter("RangeId",
TypeCode.Int32));
int rangeId = ...
How do I get the result from the database in the variable? I tried a lot of
samples on the internet but could not find the solution.
Thanks!
Arjen