问题: 网站页面上不能正常显示非英文字符 ?
原因:
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
本文介绍了当网站页面无法正常显示非英文字符时的原因及解决方案。主要包括调整数据库的排序规则和字符集设置,确保与网站文件一致;使用Notepad++将网站文件编码格式统一为UTF-8,并在网页中声明使用UTF-8编码。
1734

被折叠的 条评论
为什么被折叠?



