I seems not working because double quotations are also inserted when i use parameterized SQL query. How can i remove the double quotations?
cmd.Parameters.AddWithValue("@SORT", (rdbAscending.Checked) ? "ASC" : "DESC");
I seems not working because double quotations are also inserted when i use parameterized SQL query. How can i remove the double quotations?
cmd.Parameters.AddWithValue("@SORT", (rdbAscending.Checked) ? "ASC" : "DESC");