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


    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");

  • 相关阅读:
    ios 读取通讯录
    隐藏多余的分割线
    Cell高亮时设置cell内容
    iOS录音
    iOS发送信息功能(生成信息内容)
    iOS颜色选择器
    iOS缓存
    二维码扫描
    梵讯笔记
    微信开发后台库
  • 原文地址:https://www.cnblogs.com/linxianfeng/p/4423984.html
Copyright © 2020-2023  润新知