senzacionale
senzacionale

Reputation: 20936

convert all C# files to utf-8 encoding

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: 1093

Answers (1)

James Johnson
James Johnson

Reputation: 46077

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

Related Questions