i have a case :
i'm using a select statement with SqlCommand and save the results in the SQLDataAdapter
and using the data table I post the result to the gridview and show it there...
my question is what should I do to append string to the SQL Command??
I'm not sure if I understand what you're asking. Can you use something like this
SqlCommand.CommandText &=" appended text "before executing the command?
|||
yes i need the command text to be appended with some text later
thanks anyway, i think it's better to try it first :)