1

Telerik Report messed up like this

Tried this fix that the article suggests but in vain..ie added "preCondition" attribute but we.config says preCondition="integratedMode" Attribute is not declared"..Where do I need to declare it and how!??

I added xmlns value like this in web.config after reading a forum:-

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

It still is giving this error:-

Unrecognized attribute 'preCondition'. Note that attribute names are case-sensitive.

[EDIT] ok that fix is for IIS7..didn't notice..mine is IIS 5..so how do I fix the appearance of Telerik Report Viewer now??

4

1 に答える 1

0

念のため、Telerik.ReportViewer.axd への web.config 参照に正しい「Version=xxxxx」があることを確認してください。
web.config が古いバージョンを参照していたため、レポート ビューアーがめちゃくちゃになることが時々ありました。

サンプル:

....
....
<add name="Telerik.ReportViewer.axd_*" path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=5.1.11.928, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" preCondition="integratedMode,runtimeVersionv2.0" />
</handlers>
...
...
  <add verb="*" path="Telerik.ReportViewer.axd" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=5.1.11.928, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" validate="true" />
</httpHandlers>
于 2011-10-04T20:47:40.440 に答える