Quick Problem:
I have a DropDownList
that contains data with different special characters (',', ç ...) and I have to pass the DropDownList.SelectedItem.Text
to a OracleComand cmd
to then pass the cmd
to OracleDataReader dr
.
The problem is that the dr
does not interpret special characters, and when executing the query it returns 0 rows
because it does not interpret the special characters.
How can I change the Encode of dr
so that if I read those characters?