Wrong culture

  • Thread starter Thread starter Nergal
  • Start date Start date
N

Nergal

My local websites display the current cultrue as en-us and yet Im in the
UK.

I've set the regional settings in the control panel to United Kingdom.

The machine.config lists all cultures as neutral.

Any ideas ?
 
Hi,

Add the following line in global.asa

Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
' Fires at the beginning of each request
Thread.CurrentThread.CurrentCulture = New CultureInfo("en-GB")
End Sub

Does this solves your problem ?.

Regards
Karthikeyan.P
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top