之前做项目的时候都是在每个页面中处理这不同的异常信息,一个页面数下来,很多个try{}catch{}语句块,令整个代码结构有些不够美观。 今天看到一篇帖子,是关于利用全局应用程序类来帮忙获取异常信息,利用 server.Transfer('''')指定接受错误的页面;加上在接受错误页面中利用 ser...
分类:
Web程序 时间:
2014-07-16 19:23:19
阅读次数:
188
有些时候,发布文章内容的时候需要用到框架站外内容最近在发布内容时就遇到这个问题,给转义了,保存后变成了> iframe,前台显示也是这样,估计是官方为了防止安全,把script、iframe、frame都给转义了稍微修改一下,即可保留找到\phpcms\libs\functions\global...
分类:
其他好文 时间:
2014-07-16 18:22:04
阅读次数:
205
--创建表CREATE [GLOBAL TEMPORARY] TABLE table_name(coloum_name TYPE [CONSTRAINT constraint_def DEFAULT default_exp][,coloum_name TYPE [CONSTRAINT const.....
分类:
数据库 时间:
2014-07-16 17:50:53
阅读次数:
394
静态NAT(一对一)1.定义转换规则Gateway(config)# ip nat inside source static [Inside local IP address] [Inside global IP address]*1.1 具体端口映射Gateway(config)# ip nat ...
分类:
其他好文 时间:
2014-07-14 20:56:51
阅读次数:
743
function getClientIP(){ global $ip; if (getenv("HTTP_CLIENT_IP")) $ip = getenv("HTTP_CLIENT_IP"); else if(getenv("HTTP_X_FORWARDED_FOR"))//用了代理服务器时 .....
分类:
Web程序 时间:
2014-07-14 15:24:46
阅读次数:
213
经验:声明 template 参数时,前缀关键字 class 和 typename 可互换。请使用关键字 typename 标识嵌套从属类型名称;
示例1:
template
void print2nd(const C &container){
C::const_iterator *x;//歧义。如果const_iterator是个static成员变量,x是个global 变量,这里的 *就是乘
//...
}
示例2:
template
void pr...
分类:
编程语言 时间:
2014-07-14 11:06:02
阅读次数:
206
今天在对临时表新增栏位时遇到了错误:ORA-14450 attempt to access a transactional temp table already inuse
下面根据实验模拟了2种临时表使用不当报ORA-1445O的原因:
1、基于事物的临时表
SQL> create
global temporary
tabletemp_tab on
commit delete r...
分类:
数据库 时间:
2014-07-12 23:14:25
阅读次数:
352
Antenna Placement
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 6334
Accepted: 3125
Description
The Global Aerial Research Centre has been allotted the...
分类:
其他好文 时间:
2014-07-12 23:03:24
阅读次数:
222
Just like normal variables, pointers can be declared constant. There are two different ways that pointers and const can be intermixed, and they are very easy to mix up.
To declare a const pointer, ...
分类:
其他好文 时间:
2014-07-12 21:20:23
阅读次数:
165
Antenna Placement
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 6342
Accepted: 3131
Description
The Global Aerial Research Centre has been allotted the task of building the fi...
分类:
其他好文 时间:
2014-07-12 19:07:08
阅读次数:
181