我正在使用 VS 2010 并创建了一个示例 Web 应用程序。添加了一个数据集和报告并创建了一个只返回一行的 SP。到目前为止没有包含任何变量。只是没有任何参数的简单 SP。在 Web 应用程序中,添加了一个 aspx 页面,并在该页面中添加了一个报表查看器控件。我的 Aspx 页面如下所示:
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana"
Font-Size="8pt" InteractiveDeviceInfos="(Collection)"
WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
</rsweb:ReportViewer>
后面的代码如下:
protected void Page_Load(object sender, EventArgs e)
{
ReportViewer1.Visible = true;
ReportDataSource dataSource = new ReportDataSource("DataSet1", LoadData().Tables[0]);
ReportViewer1.LocalReport.DataSources.Clear();
ReportViewer1.LocalReport.DataSources.Add(dataSource);
ReportViewer1.LocalReport.Refresh();
}
private DataSet LoadData()
{
var dataset = new DataSet();
using (var con = new SqlConnection(ConfigurationManager.ConnectionStrings["CString"].ConnectionString))
{
var command = new SqlCommand("[spSampleReport]")
{
Connection = con,
CommandType = CommandType.StoredProcedure
};
var adap = new SqlDataAdapter(command);
con.Open();
adap.Fill(dataset, "DataSet1");
}
return dataset;
}
在我的网络配置中,在 httphandlers 部分添加了以下内容:
运行时,页面上没有显示任何内容。甚至没有显示报表查看器工具栏。