report-viewer2016

ReportViewer Error 401 view user logging in

☆樱花仙子☆ 提交于 2019-12-02 16:26:51
问题 I'm getting an 401 unauthorized error when using the ReportViewer on my test server. On my local environment (with the configurations pointed to the test server), I'm able to connect without a problem. I've tried looking the following solutions but with no luck. One two three The authentication mode I am using is Windows and while my windows credentials I have access to the report server, I'm still unable to connect. In my web.config <system.web> <customErrors mode="Off" /> <authentication

ReportViewer Error 401 view user logging in

柔情痞子 提交于 2019-12-02 09:48:50
I'm getting an 401 unauthorized error when using the ReportViewer on my test server. On my local environment (with the configurations pointed to the test server), I'm able to connect without a problem. I've tried looking the following solutions but with no luck. One two three The authentication mode I am using is Windows and while my windows credentials I have access to the report server, I'm still unable to connect. In my web.config <system.web> <customErrors mode="Off" /> <authentication mode="Windows" /> <authorization> <deny users="?" /> </authorization> ... My controller private

RDLC Local report viewer for ASP.NET Core and Angular(>2.0)

落爺英雄遲暮 提交于 2019-11-28 23:50:52
Is there any way to show RDLC Local ReportViewer control in asp.net core webpage? To show a ReportViewer, on a traditional WebForms application, the below code works. <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <div style="height: 600px;"> <rsweb:ReportViewer ID="reportViewer" runat="server" Width="100%" Height="100%"></rsweb:ReportViewer> </div> </form> </body> I have already tried and tested the below components. The results are given below. ReportViewerForMvc - Works for MVC, but not compatible with ASPNET Core.

RDLC Local report viewer for ASP.NET Core and Angular(>2.0)

丶灬走出姿态 提交于 2019-11-27 13:14:23
问题 Is there any way to show RDLC Local ReportViewer control in asp.net core webpage? To show a ReportViewer, on a traditional WebForms application, the below code works. <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <div style="height: 600px;"> <rsweb:ReportViewer ID="reportViewer" runat="server" Width="100%" Height="100%"></rsweb:ReportViewer> </div> </form> </body> I have already tried and tested the below components. The