Hi,
I am trying to pass a parameter username to a stored procedure in SQL and get 1 row back with 3 columns. Then i want to assign the 3 columns values to 3 diffrent variables and send them back to the call. can some1 please help me? here is what i got so far:
Public
MyCommand.Parameters.Add(
MyCommand.CommandType = CommandType.StoredProcedure
MyDataAdapter.Fill(myDataSet)
ManagerName =
this code was originally to put the info in a drop down list, but now i am trying to put the info into vaiables instead.
Please, please help.
-Charles