飛天
快乐的生活......
在asp.net中調用Reporting Service 2005 報表
1.搭建好Reporting service 報表服務器
如:
http://localhost/ReportServer
2. 添加web頁面,加入報表控件
<
rsweb:reportviewer id
=
"
ReportViewer1
"
runat
=
"
server
"
height
=
"
700px
"
width
=
"
100%
"
DocumentMapCollapsed
=
"
True
"
ProcessingMode
=
"
Remote
"
ShowBackButton
=
"
True
"
ShowCredentialPrompts
=
"
False
"
ShowDocumentMapButton
=
"
False
"
ShowParameterPrompts
=
"
False
"
SizeToReportContent
=
"
True
"
></
rsweb:reportviewer
3.設置報表參數
using Microsoft.Reporting.WebForms;
//
讀參數
string
itemfm
=
Request.QueryString[
"
itemfm
"
];
string
itemto
=
Request.QueryString[
"
itemto
"
];
string
category
=
Request.QueryString[
"
category
"
];
string
categoryName
=
Request.QueryString[
"
categoryName
"
];
//
設置報表參數
ReportParameter[] paras
=
new
ReportParameter[
4
];
paras[
0
]
=
new
ReportParameter(
"
itemfm
"
, itemfm);
paras[
1
]
=
new
ReportParameter(
"
itemto
"
, itemto);
paras[
2
]
=
new
ReportParameter(
"
category
"
, category);
paras[
3
]
=
new
ReportParameter(
"
categoryName
"
, categoryName);
ReportViewer1.ProcessingMode
=
ProcessingMode.Remote;
ReportViewer1.ServerReport.ReportServerUrl
=
new
Uri(ConfigurationManager.AppSettings[
"
ReportServer
"
]);
ReportViewer1.ServerReport.ReportPath
=
"
/EiWeb/rptItemMaster
"
;
this
.ReportViewer1.ServerReport.SetParameters(paras);
this
.ReportViewer1.ServerReport.Refresh();
4.web.config 設置報表服務器地址
<
appSettings
>
<
add key
=
"
ReportServer
"
value
=
"
http://Localhost/Reportserver
"
/>
</
appSettings
>
posted on 2008-05-27 19:37
飛天
阅读(1124)
评论(0)
编辑
收藏
引用
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
导航
C++博客
首页
新随笔
联系
聚合
管理
统计
随笔 - 39
文章 - 2
评论 - 7
引用 - 0
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
ACM(5)
(rss)
Android(3)
(rss)
C/C++(4)
(rss)
C++Builder(6)
(rss)
Linux(1)
(rss)
linux c函数(2)
(rss)
Linux 管理(1)
(rss)
VC(2)
(rss)
Web(3)
(rss)
其它(1)
(rss)
数据库(1)
(rss)
算法描述(5)
(rss)
学习笔记(2)
(rss)
随笔档案
2012年1月 (1)
2011年12月 (3)
2011年11月 (4)
2009年11月 (1)
2008年7月 (1)
2008年5月 (3)
2008年4月 (1)
2008年3月 (1)
2008年1月 (7)
2007年12月 (2)
2007年11月 (3)
2007年10月 (3)
2007年8月 (9)
文章分类
美文转载(1)
(rss)
文章档案
2012年7月 (1)
2007年12月 (1)
Blogs
ACM Web
农夫三拳(算法)
算法驿站 (rickone 的 BLOG)
搜索
最新评论
1. re: 马踏棋盘问题[未登录]
1
--1
2. re: [ACM 1015] 组合数算法
if(n<=m)
...
题目不是要求m<=n吗?
yangjia41@126.com
--wcdj
3. re: [ACM 1001] 密码截获
你的得一个程序输入123ab321就知道错在哪里了。。
--WonderCoder
4. re: 马踏棋盘问题
怎么不写析构函数啊?
--网友
5. re: Web中的打印控制[未登录]
有能使用高级功能的吗?例如设置打印机,打印份数和纸张,及进纸方式等.
发一份gaofei2111@163.com.
谢谢!
--fred
阅读排行榜
1. 马踏棋盘问题(3775)
2. [转]远程注入DLL 详细介绍 (3001)
3. [ACM 1015] 组合数算法(2999)
4. AjaxPro2在Asp.net中的基本用法(2317)
5. 将动态光标(ani)加入资源文件的方法(2284)
评论排行榜
1. 马踏棋盘问题(2)
2. [ACM 1002] 数字游戏(2)
3. [ACM 1001] 密码截获(1)
4. [ACM 1015] 组合数算法(1)
5. Web中的打印控制(1)
Powered by:
C++博客
Copyright © 飛天