首页 > Web开发 > 详细

获取reporting services导出pdf的url的方法

时间:2015-04-14 09:48:13      阅读:374      评论:0      收藏:0      [点我收藏+]

public static string genRptUrl(string strRptServer, string strRptPath, string strRptName, ParameterValue[] parameters, string type)
{
string strUrl = "";

strUrl = strRptServer + "?/" + strRptPath + "/" + strRptName;
//for (int i = 0; i < parameters.Length; i++)
//{
// strUrl += "&" + parameters[i].Name + "=" + System.Web.HttpUtility.UrlEncodeUnicode(parameters[i].Value);
//}
strUrl += "&rc:Parameters=False";

if (type == "PDF")
strUrl += "&rs:Format=PDF&rs:Command=Render";
if (type == "EXCEL")
strUrl += "&rs:Format=EXCEL&rs:Command=Render";
return strUrl;
}

string urlpath =genRptUrl(SplendidCRM.Properties.Settings.Default.SplendidCRM_PDTS_ReportService_ReportingService, "HHD", "HHD Satisfaction Survey Template", parameters, "PDF");

获取reporting services导出pdf的url的方法

原文:http://www.cnblogs.com/linxianfeng/p/4423984.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!