Łukasz Kosson
Łukasz Kosson
I meant using iTextSharp as a renderer of ReportViewer/RDLC, instead of GDI et al - but that's months of work. Maybe some day, if this project gets official blessing from...
It's mostly about lack of testing and no official support from Microsoft. There are four major differences between this package and official one: * expression compiler changed from VB do...
Hi, this isn't really related to this project (or Report Viewer in general), but take a look at `Index.cshtml.cs` in `ReportViewerCore.Sample.AspNetCore` to see how to provide a prepopulated file name...
I see. Not sure what to do with this. `DisplayName` doesn't really seem to be used - neither in this project nor in original sources.
Hi. I don't think it's directly related to .NET 6 or Core version of Report Viewer. What results do you get using original Microsoft's Report Viewer packages?
Create a new .NET Framework project, add original RV references, plug in your report with some minimal dataset and see if the layout still changes between PDF and DOCX.
Can you check if the report works with your extension disabled? The version number `61.34.1042443877` from the error message looks out of place. When converted byte-by-byte back to ASCII, it...
Consider setting `reportViewer.ReportServerCredentials.NetworkCredentials` to proper instance of `NetworkCredential` as in example provided in readme of this repo and in `WinFormsServer` sample project. Values provided in `SetFormsCredentials` are not really used...
Disregard previous comment - it's for basic auth only. You should definitely use `SetFormsCredentials` if you need forms authentication. Can you trace at which point in report viewer code you...
There indeed is an issue with a missing `RSAuthenticationHeader` header and forms authenticaion cookie. Without a way to test it, all I can do is to point you (or anyone...