R
Rangy
Say you have the following in your code.
SqlCommand objCommand = new SqlCommand("StoredProcedure1",
objConnection);
Is there a way to replace the "StoredProcedure1" value at runtime
based on a selection in a list or textbox entry.
Thanks!
SqlCommand objCommand = new SqlCommand("StoredProcedure1",
objConnection);
Is there a way to replace the "StoredProcedure1" value at runtime
based on a selection in a list or textbox entry.
Thanks!