I use a Title in my aspx page with special characters (á,é,í,ó,ú, etc).
Title="Información Económica"
Page.aspx
<%@ Page Language="C#" Title="Información Económica" MasterPageFile="~/MyMaster.Master" AutoEventWireup="true" CodeBehind="InformacionEconomica.aspx.cs" Inherits="Company.WebIU.InformacionEconomica" %>
web.config
<globalization culture="es-ES" uiCulture="es-ES" enableBestFitResponseEncoding="false" enableClientBasedCulture="false" fileEncoding="UTF-8" requestEncoding="UTF-8" responseEncoding="UTF-8" responseHeaderEncoding="UTF-8"/>
I have meta with charset="utf-8"
But the title is wrong:
<!DOCTYPE html>
<html lang="es">
<head>
<meta name="tipo_contenido" content="text/html;" http-equiv="content-type" charset="utf-8" />
<title>
Informaci?n Econ?mica
</title>
Works like using "acute"
Title="Información Económica"
There are more 300 aspx pages, and I don't want replace all
á by á
é by é
í by í
ó by ó
ú by ú
etc...
Any suggestions?