Access データベースと VS2010 を使用しています。Crystal レポートをロードしようとしていますが、この行でこのエラーが発生します。これをserver
どのように記述すればよいですか。
rptDoc.Load(Server.MapPath("C:/Users/Monika/Documents/Visual Studio 2010/Projects/SonoRepo/SonoRepo/Report/PatientCrystalReport.rpt"));
為にserver
コード
private void ViewReport_Load(object sender, EventArgs e)
{
ReportDocument rptDoc = new ReportDocument();
PatientDataset ds = new PatientDataset(); // .xsd file name
DataTable dt = new DataTable();
// Just set the name of data table
dt.TableName = "Patient Crystal Report ";
dt = getAllPatients(); //This function is located below this function
ds.Tables[0].Merge(dt);
//getting error here
// Your .rpt file path will be below
rptDoc.Load(Server.MapPath("C:/Users/Monika/Documents/Visual Studio 2010/Projects/SonoRepo/SonoRepo/Report/PatientCrystalReport.rpt"));
//set dataset to the report viewer.
rptDoc.SetDataSource(ds);
PatientCrystalReport.ReportSource = rptDoc;
}