What is the use of <globalization> tag in ASP.Net Web.Config File?

chinmay.sahoo

New member
• Globalization tag is used when we want to use encoding or specify a culture for the application.

• We need to define the character set for the server to send the response to the client, which is by default is UTF-8, and the settings of which the s rv r should use to interpret and display culturally specific strings, such as numbers and dates.

• Example of <globalization> tag

<globalization requestEnco ing="utf-8" responseEncoding="utf-8" />
 
Back
Top