Kamran Ajmal
Kamran Ajmal

Reputation: 302

Telerik Report, Unable to perform print operation

I am having a problem with Telerik Reports Printing.I am using Telerik Reports with Telerik Report Viewer. In Chrome when i click Print button it gives me an alert

'Unable to Perform the Print Operation'

I googled on it and found from Telerik forums that Adobe plugin should be installed and enabled in order to use Print, I updated my Adobe Plugin in Chrome,

This solution has resolved problem only on my local server but on Live server(www.xyz.com) it is still giving me the same alert. I am using GoDaddy hosting server.

What should i do in order to perform the Print operation of Telerik Reporting on Live Server using Chrome ?

Upvotes: 0

Views: 2270

Answers (2)

Kamran Ajmal
Kamran Ajmal

Reputation: 302

I found the solution of this Problem Just put this code in web.config and problem will be resolved

<system.web>
<trust level="Full" />
</system.web>

Upvotes: 0

Superzadeh
Superzadeh

Reputation: 1106

This is a client related issue, not a server one. If the user trying to perform the print operation is using chrome, then he will have to install the pluggin aswell, no matter what is setup on the server.

Installing it on the server would do nothing for the other clients.

One possible solution for you would be to generate the PDF file from the report and send it directly to the client, without using the report viewer (there's a report processor object, it is well documented on their websites). And if you still want to provide the preview, try adding to buttons: "preview" and "print".

Upvotes: 1

Related Questions