---
title: "ASP.Net Globalization"  
description: "Hey Guys!! In this tutorial, I am going to explain you the concept of Globalization with an Example.  Globalization: - Process of creating an applicat"  
author: "mohan kumar"  
published: 2011-11-21  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/806/asp-dot-net-globalization  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# ASP.Net Globalization

Hey Guys!! In this tutorial, I am going to explain you the concept of Globalization with an Example.\

Globalization: - Process of creating an application that meets the needs of users from multiple cultures. This process involves more than just translating the user interface of an application into multiple languages – it also includes using the correct currency, date and time format, calendar, writing direction and other issues.

##### Default.aspx:-

```
<form id="form1" runat="server">    <div>    <asp:Label ID="lblCulture" runat="server" ></asp:Label>    </div></form>
```

Default.aspx.cs:-

Don’t forget to add the namespace System.Globalization. Use VB Or C# use this lines to add the namespace.

Using System.Globalization; **(C#)**

Import System.Globalization; **(VB)**

In your Page_Load event,add the below lines:-

```
protected void Page_Load(object sender, EventArgs e)    {        string sLang =Request.UserLanguages[0];        CultureInfo currentCulture= new CultureInfo(sLang);  lblCulture.Text = currentCulture.EnglishName + ":" + currentCulture.Name.ToLower();    } 
```

##### Your output will be similar to this:-

![ASP.Net Globalization](https://www.mindstick.com/mindstickarticle/d4f03931-09c1-4546-9bb4-b2fa7945a2ab/images/d36796ee-663e-4da1-b28e-9079ac405d0d.png)

Just post back a reply if this article was useful for you. Thanks for reading my article. Happy Coding.Explore more and more as much as possible.

---

Original Source: https://www.mindstick.com/articles/806/asp-dot-net-globalization

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
