Sql server report services select text

I am using ssrs with a winforms control ReportViewerto display reports to my users. Sometimes they want to select the part of the text that the report displays. But control ReportViewerdoes not give us this ability, it simply conveys the text. Is there some property that I can change in the .rdl report or some property in the control ReportViewerthat would give me this ability.

I'm trying google but can't find anything.

Any help would be greatly appreciated. :)

+3
source share
2 answers

You can allow them to export the report as a PDF or EXCEL file, which should provide them with all the content

0

ReportViewer.

1 SOAP Reporting Services , , , ..

:

( )

SO

2 . , , , , .

3 URL- ReportServer, , MHTML Url Access. , , . -, .

:

var partialPath = System.Web.HttpUtility.UrlEncode(RelativeReportPath);
//RelativeReportPath is sth. like /YourFolder/YourReportName
var fullPath = string.Format("http://YourReportSereverDNS/ReportServer?{0}&rs:Command=Render&rc:Toolbar=false&rs:Format=MHTML", partialPath);
var client = new RestClient(fullPath);
client.Authenticator = new HttpBasicAuthenticator(@"domain\user", "SuperSecretPassword");
var request = new RestRequest(Method.GET);
var response = client.Execute(request);
//then throw response.Content into a Webbrowser Control in your winforms

( - ): -)

0

Source: https://habr.com/ru/post/1722998/


All Articles