- public partial class _Default : System.Web.UI.Page
- {
-
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- FillDataToReport();
- }
- }
-
- public void FillDataToReport()
- {
-
- DataTable dt = new DataTable();
- dt.Columns.Add("studentID", typeof(int));
- dt.Columns.Add("studentName", typeof(string));
- dt.Columns.Add("password", typeof(string));
- dt.Rows.Add(1, "王伯仙", "001");
- dt.Rows.Add(2, "白云飘飘", "002");
- dt.Rows.Add(3, "小神仙", "003");
-
- this.ReportViewer1.LocalReport.ReportPath = "student.rdlc";
- this.ReportViewer1.LocalReport.DataSources.Add(new ReportDataSource("T_Student", dt));
-
- }
- }
posted @
2015-06-19 16:42
西西M
阅读(
1567)
评论()
编辑
收藏
举报