User288213138 posted
Hi mariolopes,
Please check if your operating system, browser application and website support displaying Portuguese language.
I tested it on my chrome, Firefox, IE and Edge. They all display normally.
what is the type of encoding or character set you are using for the application?
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Unable to display language problems properly.aspx.cs" Inherits="case_solution.Rendering_issues.Unable_to_display_language_problems_properly" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="nome" HeaderText="nome" SortExpression="nome" />
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:CaseTestConnectionString %>" SelectCommand="SELECT [nome] FROM [Test33]"></asp:SqlDataSource>
</div>
</form>
</body>
</html>
Here is an article about how to set the display characters in chrome for your reference. https://itstillworks.com/display-japanese-characters-google-chrome-14542.html
If you haven't solved the problem, please post you aspx code.
Best regards,
Sam