Thanks for joining me for the second part of this two-part series on crash reporting services!Thefirst partintroduced you to the architecture of crash...
分类:
移动开发 时间:
2015-02-09 23:01:45
阅读次数:
416
用户无意义的频繁跳转、请求都会给服务器加重很多负担 其实 用cookie就可以防止这一点。
<?php
error_reporting(0);
//if($_COOKIE["ck"])die("刷新过快!");
if($_COOKIE["ck"])header("Location:http://www.baidu.com");//这里如果用户刷新过快,给予终止php脚本或者直接302跳转
set...
分类:
Web程序 时间:
2015-02-07 17:32:28
阅读次数:
168
遇到一个有意思的Reporting Services报表的案例,在2015-01-30号的凌晨20分左右的时候,有人发现Reporting Services的速度非常慢,而且最后有抛出异常,当时不知道什么情况。只是记录了其中一张报表的名字,以及出错信息截图。如下所示: 第二天,我首先通过下面SQL查...
分类:
其他好文 时间:
2015-02-03 01:48:09
阅读次数:
250
??
最近在做reporting services报表的时候,部署到sharepoint后,打开rdl报表,经常遇到一个问题:
报表服务器数据库内出错。此错误可能是因连接失败、超时或数据库中磁盘空间不足而导致的。 ---> Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: 报表服务器数...
分类:
数据库 时间:
2015-01-30 10:42:42
阅读次数:
741
<?php
error_reporting(0);//这个最好加上 因为file_get_contents遇到目录时会出错$key=$_GET['key'];$dir=dirname(__FILE__);$file=scandir($dir);foreach($file as $f){$tmp=file_get_contents($f,1024*100);if(stripos($tmp,$ke...
分类:
Web程序 时间:
2015-01-28 14:48:16
阅读次数:
190
日期操作很常用。下面是一个简单的功能。主要是需要区分PHP中常用的时间结构。请看下面的一段代码,涉及到了大部分的时间操作函数,相信会有帮助。
<?php
error_reporting(7);
ini_set('display_errors', 1);
ini_set('date.timezone','Asia/Shanghai');
$start_str = '2015-01-01 23...
分类:
Web程序 时间:
2015-01-27 21:52:22
阅读次数:
200
接到一個頗富挑戰性的需求,Reporting Service或RDLC報表可匯出成Excel、PDF等檔案格式,對一般麻瓜型使用者而言,PDF唯讀,Excel則可修改,業務單位希望在拿到報表紙本時加以區分;換句話說,如果能讓PDF與Excel檔的列印結果有別,即可做為報表結果是否唯讀,有無被修改可能...
分类:
其他好文 时间:
2015-01-26 19:11:20
阅读次数:
201
<?php
//error_reporting(0);//关闭错误报告
include_once("simple_html_dom.php");//引入解析库
$url='http://www.w3cschool.cc/mongodb/mongodb-window-install.html';
$html=file_get_html($url);
while($url[strlen($url)-1...
分类:
Web程序 时间:
2015-01-23 16:22:20
阅读次数:
190
错误 Parser Error Message: The base class includes the field 'rvEquipment', but its type (Microsoft.Reporting.WebForms.ReportViewer) is not compatible w...
分类:
其他好文 时间:
2015-01-22 10:46:55
阅读次数:
328
在报表开发过程中,经常会遇到各种各样的问题,比如The report cannot be displayed. (rsProcessingAborted),一点有意义的提示都没有;再就是分页问题,经常我们想把一条记录放在一页,下一条记录另起一页,而不是紧连在上一条记录的后面;有时我们还会出现上传报表...
分类:
其他好文 时间:
2015-01-21 22:05:53
阅读次数:
173