I am saving data in a database for multiple countries. Nvarchar is the type for the column for the table.
Sample of the data is
**Culture -- DisplayText**
En-Us -- Howdy
En-Gb -- Hello
De-De -- Guten Tag
Fr-Fr -- Bonjour
On my aspx page I have
var culture = CultureInfo.CurrentCulture;
I then use the culture variable to get the data
getDatabyCulture(culture.Name);
I then change my browser language setting to French but it always defaults to my local culture and not the culture I'm testing against? Whether that be France or Germany, it still returns data back in my local culture.
What am I doing wrong?