Reputation: 20906
I need utf-8 encoding for my web page so i am thinking about converting all *.cs and *.aspx files to utf-8. Is that smart idea or is better to convert just *.aspx files.
Now i have problems with čžćšđ
Upvotes: 1
Views: 1087
Reputation: 46047
The only files you need to encode are your ASPX files. If you're using master pages in your project, just specify the encoding there, and it will carry through to all pages using that master page.
Upvotes: 2