Visual Studio项目字符集问题
我有一个 Visual Studio 2010 MVC 2 项目,视图中包含西班牙字符。
我将项目转换为 Telerik MVC 2 项目,现在在执行过程中我的视图中的特殊字符被奇怪的字符代替(它们在 Visual Studio 的 aspx 代码中显示正常)。
例如:我曾经在执行过程中看到这个:
我现在看到这个:
这仅发生在母版页内容中。
在 Visual Studio 中:在哪里设置保存/加载文件时使用的编码? Telerik 的转换似乎搞砸了,对吧?
I had a Visual Studio 2010 MVC 2 project with spanish characters in my views.
I converted the project to Telerik MVC 2 project and now I get weird characters in place of the special characters in my views during execution (they're shown ok in the aspx code in Visual Studio).
E.g.: I used to see this during execution:
I now I see this:
This only happens with the Master Page content.
In Visual Studio: where do I set the encoding used when saving/loading files? The Telerik conversion seems to have messed that up, right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 Telerik 转换是如何打破这一点的。但我用这种方式解决了这个问题:
创建了一个名为
Site2.Master
的新母版页Site.Master
复制到Site2.Master
删除了
Site.Master
将
Site2.Master
重命名为Site.Master
I don't know how did the Telerik conversion break that. But I've solved the problem this way:
Created a new master page named
Site2.Master
Copied the content from
Site.Master
toSite2.Master
Deleted
Site.Master
Renamed
Site2.Master
toSite.Master