Concepts of CODE Page approach - ASP.NET

Explain the concepts of CODE Page approach. What are the disadvantages of this approach?

Code Page was used before Unicode came into existence. It was a technique to represent characters in different languages. It was a different interpretation of ASCII set which means it kept 128 characters for English and rest 128 were specifically tailored for other languages.

Disadvantages:

- Languages like Japanese and Chinese having more than 5000 characters were difficult to represent n 128 character set.
- Clients also need to have a support for code page.
- It‘s representation is done on the basis of operating system.
What are resource files and explain how do we generate resource files?
Resource files and explain how do we generate resource files - Resource files are files in XML format. They contain all the resources needed by an application...
What are Satellite assemblies and how to generate Satellite assemblies? - ASP.NET
Satellite assemblies and how to generate Satellite assemblies - To support the feature of multiple languages, we need to create different modules that are customized on the basis of localization...
Define AL.EXE and RESGEN.EXE - ASP.NET
Define AL.EXE and RESGEN.EXE - Al.exe: It embeds the resources into a satellite assembly. It takes the resources in .resources binary format...
Post your comment