Each user of my application will choose their country, after which it will be stored in a cookie and stored for later requests. Everything is working OK, but I need to set t
You must set the culture on each call, Session_Start is only fired when a session is created. So your culture is correct only on first call or when the session is recreated.