Visual Studio project character set problem
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?
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
精彩评论