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" %>