编程语言
首页 > 编程语言> > c# – LocalReport方法呈现的线程文化

c# – LocalReport方法呈现的线程文化

作者:互联网

我正在将一个localreport对象用于asp.net应用程序.
此报告由一组对象提供.因此,在报告的呈现中,会调用classe的一些属性.

Class ClassForReport
{
  string Date
  {
    get{return _aDate.ToshortDateString();}
  }
}

现在渲染的代码和问题:

//first of all, I change de culture for taking in account the choice of the user
CultureInfo ci = CultureInfo.CreateSpecificCulture(isoLanguageName_);
Thread.CurrentThread.CurrentCulture = ci;
Thread.CurrentThread.CurrentUICulture = ci; 
//Here, my culture is now: FR-be

MyLocalReport.render(...) // in this method, the property Date above is called. And when debugging I see that the culture is EN !!!

...
//and here, my culture is still Fr-be

因此,当调用方法render时,它会启动一个线程并获取服务器的文化,而不是进程的文化.

我看到的唯一的工作方式是将我的报告更改为包含日期,然后提供文化参数,并在我的所有报告中将所有日期格式化为给定的文化…

所以我真的希望有一种方法可以告诉报告采取asp线程的复制文化,而不是采取其他一些文化来自无处.

thx提前

解决方法:

在ReportFile的“.rdlc”Designer中,在“语言中的报表”属性“=用户!语言”中设置.

<Report>
  ... 
  <Language>=User!Language</Language>
  ...
</Report>

那么你的System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(“de-DE”);
将处理report.Render(…)中的值;喜欢约会等.

干杯.

标签:c,reporting-services
来源: https://codeday.me/bug/20190526/1158583.html