我尝试使用报告查看器在asp.net网页上显示ssrsc报告
码
protected void Button1_Click(object sender, EventArgs e)
{
ReportViewer2.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
ReportViewer2.ServerReport.ReportServerUrl = new Uri("http://lenovo-pc/ReportServer");
ReportViewer2.ServerReport.ReportPath = "/Report Project1/Report1";
ReportViewer2.ServerReport.Refresh();
}
问题在哪里......为什么报告不显示?
答案 0 :(得分:2)
它告诉您错误消息中的问题:
“管理员”
登录失败
您尝试在其下运行报告的帐户无权访问DataSource1
尝试连接的数据库或表。
请注意,出于安全原因,部署报表时不会传播连接凭据。您可能需要在部署它的服务器上为该报告设置这些报告。
或者,在运行报告时,您可能需要pass the appropriate credentials作为代码的一部分。