Steps to implement localizability to the user interface - C#.NET

Steps to implement localizability to the user interface.

Implementation consists of basically translating the UI.

set the culture and UI culture for an application make the following entry in the web.config
<globalization uiCulture="es" culture="es-MX" />

For setting culture in pages use the following:
<%@ Page UICulture="es" Culture="es-MX" %>
What are Trace Listeners and Trace Switches? - C#.NET
What are Trace Listeners and Trace Switches? - Trace listeners are objects that are used to receive store and route tracing information...
How to implement tracing with an example using C#.NET
Explain how to implement tracing - In web.config, set EnableTracing=”true”...
Debugging Windows in C#.NET
Explain all the windows that help with your debugging - This window provides a description for the flow of application till the current line where the debugger is pointing to. It gives the page information, method name, arguments, line number etc...
Post your comment