1
chenhaozhe
6 天以前 30f332f62156d0e3460ed20a4865911f9a1912e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
//using System.Web;
using grsvr6Lib;
 
///本程序单元定义HTML5报表需要依赖报表服务器支撑的功能所必须的程序代码
///如果HTML5报表项目中不依赖也不引用报表服务器模块,请将本程序单元及相关程序单元移除
///HTML5报表目前依赖报表服务器的功能主要有:
///1、生成条形码与二维码的图形数据,关联程序模块为 Barcode.ashx
///2、将非文本的报表模板转换为文本形式,关联程序模块为 ReadReport.ashx
namespace GridReport.html5
{
    public class ServerTools
    {
        //定义一个全局可用的报表工具类接口变量
        //接口可用的方法可以在帮助文档中查询 Utility 接口
        public static GridppReportUtility ReportUtility = new GridppReportUtility();
    }
}