ASP.NET Core MVC Controls | ComponentOne
In This Topic
    Globalization
    In This Topic

    Globalization is the process of designing and developing applications that function for multiple cultures. Localization is the process of customizing your application for a specific culture and locale.

    By default, C1 MVC controls format and parse the data using American English culture. The decimal symbol is a period, the thousand separator is a comma, and the days of the week are "Sunday" through "Saturday". However, these symbols or separator are different for other cultures. In case the application targets any other culture, register the appropriate culture using MVC scripts in your HTML pages.

    For example, to localize an application for the Japanese culture, register the "ja" culture in _Layout.cshtml file.

    _Layout.cshtml
    Copy Code
    <c1-scripts>
    <c1-basic-scripts culture="ja" /> 
    </c1-scripts>