-1
All Asp pages are as UTF-8.
I look for the title of a table in the database by passing by parameter(request), but when displaying always displays with Ncode problems, I use IE because of the system development itself.
The title shall be completed as follows::
But it is presented this way:
The page is as UTF-8, according to the images:
In bank the table is with its collation "Sql_latin1_general_cp1_ci_as" as image:
Would anyone have any hint of what might be causing this yet?
OBS: The problem only occurs when I search in bank.
Your collation suggests that the encoding is Latin 1 (you already have a concept error there, you showed the collation in the question, which is not part of the problem - the encoding is what matters. We are just inferring the error based on the collation) - Then you try to display in UTF-8, it is not compatible. Either convert (subject to other confusions), or ideally take this UTF from the page and exchange for
charset=iso-8859-1
in the meta tag (if your application doesn’t need to meet non-western languages or record more complex special characters, it’s the simplest way)– Bacco