I have a stored procedure
I would like to assign the query result of the procedure GetZipcodesForDistance into a data set zipcodedistance. I have a for loop to display the rows of the data set.
However, I cannot find a method to assign each row of the query to each row of data set. Any hints?
I am trying to call the procedure above and to populate DataSet with the results of the procedure query. Thanks.
Code:
GetZipcodesForDistance( _
Application("outputTextBox"), _
Application("radiusTextBox"))
Code:
For Each rowDistance In zipcodedistance.Rows
If rowDistance(1) = Application("outputTextBox") Then
Page.Response.Write(" " & rowDistance(1) & " ")
End if
Next
I am trying to call the procedure above and to populate DataSet with the results of the procedure query. Thanks.