码迷,mamicode.com
首页 >  
搜索关键字:reporting    ( 607个结果
Web报表-RDLC报表的使用
RDLC报表使用方便,能很好镶嵌在web程序里面,且能方便的导出各种文件的格式;使用此报表程序要引用 Microsoft.Reporting.WebForms;下面以一个例子来进行讲解它的用法。1.后台代码: #region 报表 public ActionResult ReportV...
分类:Web程序   时间:2014-09-02 15:33:34    阅读次数:421
php单入口请求
index.php:$action(); } //清除对象 unset($obj);} else { //未登陆或请求错误 echo 0;}$DB->CloseConnection();config.php:<?phperror_reporting(E_ERROR);s...
分类:Web程序   时间:2014-09-01 17:37:23    阅读次数:177
运维自动化之锋芒毕露puppet 基础详解。
puppet简介Puppet是一个IT基础设施自动化管理工具,它能够帮助系统管理员管理基础设施的整个生命周期:供应(provisioning)、配置(configuration)、联动(orchestration)、及报告(reporting)。基于puppet,可实现目标管理的幂等性、自动化重复任务、快速部署关键性应用以..
分类:其他好文   时间:2014-09-01 15:47:14    阅读次数:239
[转]Using the Group Pane to Repeat Page Titles
转自:http://www.wiseowl.co.uk/blog/s148/group-pane-advanced-mode.htmRepeating Page Headers in Reporting Services 2008 R2Part two of a two-part series of...
分类:其他好文   时间:2014-08-29 19:52:08    阅读次数:282
防sql注入攻击
这两天看了个防sql注入,觉得有必要总结一下:首先需要做一些php的安全配置:1 在php.ini 中把display_errors改成OFFdisplay_errors = OFF或在php文件前加入error_reporting(0)2 关闭一些“坏功能”1)关闭magic quotes功能 ....
分类:数据库   时间:2014-08-29 17:44:48    阅读次数:277
SMART 硬盘状态检测
## SMART 简介 S.M.A.R.T.,全称为“Self-Monitoring Analysis and Reporting Technology”,即“自我监测、分析及报告技术”。是一种自动的硬盘状态检测与预警系统和规范。通过在硬盘硬件内的检测指令对硬盘的硬...
分类:其他好文   时间:2014-08-27 19:04:18    阅读次数:1094
ASP.Net中使用Report Service
简要的介绍Asp.net下使用Report Service的方法,并解决【基类包括字段“ReportViewer1”,但其类型(Microsoft.Reporting.WebForms.ReportViewer)与控件(Microsoft.Reporting.WebForms.ReportViewe...
分类:Web程序   时间:2014-08-24 20:42:12    阅读次数:400
PHP undefined index的解决办法
方法1:服务器配置修改 修改 php.ini 中的 error配置下错误显示方式:将error_reporting = E_ALL | E_STRICT修改为 error_reporting = E_ALL & ~E_NOTICE 修改后重启下APCHE服务器,方可生效方法2:对变量进行初始化...
分类:Web程序   时间:2014-08-22 14:18:28    阅读次数:210
PHP错误报告级别
error_reporting = E_ALL & ~E_NOTICE; 错误报告级别是位字段的叠加,推荐使用 E_ALL | E_STRICT; 1 E_ERROR 致命的运行时错误; 2 E_WARNING 运行时警告(非致命性错误); 4 E_PARSE 编译时解析错误; 8 E_...
分类:Web程序   时间:2014-08-19 22:13:35    阅读次数:264
测试覆盖率插件cobertura-maven-plugin
maven的测试覆盖率插件集成,首先修改工程的pom.xml文件,添加cobertura-maven-plugin插件,如下: 1.环境准备 <project> ... <reporting> <plugins> <plugin> <gr...
分类:其他好文   时间:2014-08-14 11:04:58    阅读次数:420
607条   上一页 1 ... 55 56 57 58 59 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!