Hi Team
I need to hide all the export options from Report viewer except (PDF and XLS). I had done below changes in web.config. It works fine in my local machine. But It does not work in Deployed link.
In one of the thread I understood that we need to deploy Telerik.Reporting.XpsRendering.dll. I have added this dll in bin folder of deployed code. But still I get the exception.
Please help me what's wrong with this code??
<section
name="Telerik.Reporting"
type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=5.1.11.928, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
allowLocation="true"
allowDefinition="Everywhere"/>
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="IMAGE" visible="false"></Extension>
<Extension name="XLSX" visible="false"></Extension>
<Extension name="RTF" visible="false"></Extension>
<Extension name="PPTX" visible="false"></Extension>
<Extension name="DOCX" visible="false"></Extension>
<Extension name="CSV" visible="false"></Extension>
<Extension name="MHTML" visible="false"></Extension>
<Extension name="XPS" visible="false"></Extension>
</Render>
</Extensions>
</Telerik.Reporting>
I need to hide all the export options from Report viewer except (PDF and XLS). I had done below changes in web.config. It works fine in my local machine. But It does not work in Deployed link.
In one of the thread I understood that we need to deploy Telerik.Reporting.XpsRendering.dll. I have added this dll in bin folder of deployed code. But still I get the exception.
Please help me what's wrong with this code??
<section
name="Telerik.Reporting"
type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=5.1.11.928, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
allowLocation="true"
allowDefinition="Everywhere"/>
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="IMAGE" visible="false"></Extension>
<Extension name="XLSX" visible="false"></Extension>
<Extension name="RTF" visible="false"></Extension>
<Extension name="PPTX" visible="false"></Extension>
<Extension name="DOCX" visible="false"></Extension>
<Extension name="CSV" visible="false"></Extension>
<Extension name="MHTML" visible="false"></Extension>
<Extension name="XPS" visible="false"></Extension>
</Render>
</Extensions>
</Telerik.Reporting>