您的位置:首页 > 运维架构 > 网站架构

非英文[字符]在网站上不能正常显示

2015-09-26 18:05 573 查看
问题: 网站页面上不能正常显示非英文字符 ?

原因:

1> Wrong database collation or charset.

2.>The website files encode formats do not match with each other.

解决方案:

1>
Change your database collation or charset to
match with your site.

如何修改MSSQL 数据库的collation. In
order to successfully change the database collation you will need to set your database to a single-user mode, change the collation, and set it back to a multi-user mode.You
can copy, paste, and run the following T-SQL script to achieve this:

SELECT name, collation_name FROM sys.databases;
GO
ALTER DATABASE [DatabaseName] SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
GO
ALTER DATABASE [DatabaseName] COLLATE CollationName;
GO
ALTER DATABASE [DatabaseName] SET MULTI_USER;
GO
SELECT name, collation_name FROM sys.databases;
GO
Replace
DatabaseName with your actual database name and CollationName with your target collation name.

The query result window will display the collation names of your databases before and after the execution of the query.
2.>Use
notepad++ to change your website files encode format to UTF-8, and add meta to declare your site to use UTF-8
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: