码迷,mamicode.com
首页 > Web开发 > 详细

基于WebForm+EasyUI的业务管理系统形成之旅 -- 施工计划查询

时间:2014-09-19 19:08:05      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   2014   

上篇《基于WebForm+EasyUI的业务管理系统形成之旅 -- 施工计划安排》,主要介绍整个施工计划列表与编辑界面。

下面看看施工计划查询(ⅠⅡⅢ ⅣⅤⅥ Ⅶ Ⅷ)

Ⅰ、施工计划查询


 施工计划查询界面,如下图所示。

bubuko.com,布布扣

点击【查询】,按年月得出该年月施工计划,具体代码如下

 1 protected void lbtSearch_Click(object sender, EventArgs e)
 2     {
 3         if (CheckInput())
 4         {
 5             string connValue = DataFactory.BaseConnString;
 6             StiReport report = new StiReport();
 7             SqlConnection conn = new SqlConnection(connValue);
 8             string appDirectory = Utils.GetMapPath(@"/Main/PMC/ReportModules/Reports/ConPlanReport.mrt");
 9             report.Load(appDirectory);
10             report.Dictionary.Databases.Clear();
11             report.Dictionary.Databases.Add(new StiSqlDatabase("BasePermissionV10", connValue));
12             report.Dictionary.DataStore.Clear();
13             report.RegData("BasePermissionV10", conn);
14             report.Compile();
15             report["@sYear"] = this.ddlYear.SelectedValue;
16             report["@sMonth"] = this.ddlMonth.SelectedValue;
17             StiWebViewer1.Report = report;
18         }
19     }

 

基于WebForm+EasyUI的业务管理系统形成之旅 -- 施工计划查询

标签:style   blog   http   color   io   os   ar   for   2014   

原文地址:http://www.cnblogs.com/Raymond-YYC/p/3981815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!