Is there a way to specify the culture when using System.Net.WebClient to read the contents of a page
- by bubbassauro
Is there a way to render a page with a specific culture using System.Net.WebClient?
For example:
System.Net.WebClient client = new System.Net.WebClient();
CultureInfo myCulture = System.Globalization.CultureInfo.GetCultureInfo("es-ES");
// Do something to specify the culture info
client.DownloadString(someUrl);