I am re-writing a login process I wrote in Console to a web based application and keep getting hung up when I add the SqlParamater. For some reason it doesn't recogize FirstName and gives the error "The FirstName does not exist in current context".
How can I solve this?
//set the command object so it knows to execute a stored procedure
cmd.CommandType = CommandType.StoredProcedure;
//Doesn't understand line under....
cmd.Parameters.Add(new SqlParameter("@FirstName", FirstName));
parmReturnValue = cmd.Parameters.AddWithValue("@UserId", SqlDbType.Int);
parmReturnValue.Direction = ParameterDirection.ReturnValue;