1

每次我打开有水晶报告的表单时,它总是要求输入用户名和密码,但我什至没有在我的网络应用程序中使用用户名和密码。我在 web.config 中使用集成安全性。我该如何解决这个问题?

这是代码:

            using System;
            using System.Collections.Generic;
            using System.Linq;
            using System.Web;
            using System.Web.UI;
            using System.Web.UI.WebControls;
            // FOR CRYSTAL REPORT
            using CrystalDecisions.CrystalReports.Engine;
            using CrystalDecisions.Shared;
            using System.Data;
            using System.Configuration;

            // FOR SQL CONNECTION
            using System.Data.Sql;
            using System.Data.SqlClient;
            using MediCard_Cooperative.App_Data;

            namespace MediCard_Cooperative.MediCard_Cooperative.Reports
            {
                public partial class rptTest : System.Web.UI.Page
                {
                    private SqlConnection connSQL;

                    protected void Page_Load(object sender, EventArgs e)
                    {
                        ReportDocument rptDoc = new ReportDocument();
                        dsMembers ds = new dsMembers();                     // .xsd or dataset filename
                        DataTable dt = new DataTable();

                        // Set the name of data table
                        dt.TableName = "Crystal Report Members";
                        dt = getAllData();                                  // calling 'getAllMembers' function
                        ds.Tables[0].Merge(dt);

                        // .rpt file path "../Reports/SimpleReports.rpt"
                        rptDoc.Load(Server.MapPath("../Reports/CrystalReports/ctrSample.rpt"));

                        //set dataset to the report viewer
                        rptDoc.SetDataSource(ds);
                        ctrViewerTest.ReportSource = rptDoc;
                    }

                    public DataTable getAllData()
                    {
                        try
                        {
                            using (connSQL = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["connstring"].ToString()))
                            {
                                using (SqlCommand cmd = new SqlCommand("usp_Test", connSQL))
                                {
                                    cmd.CommandType = CommandType.StoredProcedure;

                                    connSQL.Open();
                                    cmd.ExecuteNonQuery();

                                    using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                                    {
                                        DataSet ds = new DataSet();

                                        da.Fill(ds, "dtTest");

                                        return ds.Tables[0];
                                    }

                                }

                            }

                        }
                        catch (Exception ex)
                        {
                            throw new Exception(ex.Message);
                        }
                    }
                }
            }
4

7 回答 7

3

您将不得不通过ReportDocument对象提及数据库用户名和密码。

rptDoc.SetDatabaseLogon(username, password);
于 2012-12-05T07:35:05.800 回答
1

您需要通过代码传递服务器凭据

rptDoc.SetDatabaseLogon(yourDatabaseServerUsername, yourDatabaseServerPassword);

就像是

rptDoc.SetDatabaseLogon("sa", "123");
于 2012-12-05T07:52:40.630 回答
1

无法找到数据集或用于设计报表的数据集与传递的数据集不同,水晶报表假设您需要登录。

由于您没有将参数传递给您的 sp,我认为直接让水晶报表管理这些会更好。需要维护的代码更少。

于 2012-12-05T07:30:46.847 回答
1

在 C# 或 VB 中打开您正在使用的水晶报表,然后转到字段资源管理器并右键单击数据库字段,如 在此处输入图像描述

并选择设置数据源位置...

将打开一个新窗口...展开属性。

在此处输入图像描述

然后找到集成的 Security 它将默认为 False 将其更改为 True

喜欢

在此处输入图像描述

于 2016-01-23T20:23:33.610 回答
0

请务必在 Crystal 中设置您的数据源位置:

  1. 使用 OLEDB (ADO) 时,设置。
  2. 选择“Microsoft OLE DB Provider for SQL Server”

设置数据源位置图像

于 2021-03-05T02:43:11.140 回答
0

Dim myreport As New PurchaseInvoiceTest 'Crystal Reports 每次通过以下行解决问题时都要求进行身份验证 myreport.SetDatabaseLogon("sa", "abcdef@12345")

于 2020-01-06T10:32:49.880 回答
-1

rpt.SetDatabaseLogon("sureguide_admin", "ejaz661")

ts 工作

于 2018-07-19T09:30:23.730 回答