【发布时间】:2010-04-27 15:55:29
【问题描述】:
有没有办法使用 System.Net.WebClient 呈现具有特定文化的页面?
例如:
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);
【问题讨论】: