在用mvc 的AuthorizeAttribute做身份验证,重写HandleUnauthorizedRequest方法,在Application_Error方法里出现异常System.Web.HttpException (0x80004005): Server cannot set status ...
分类:
Web程序 时间:
2014-07-19 15:28:41
阅读次数:
508
1、yum install vsftpd;2、vi /etc/vsftpd/vsftpd.conf 将userlist_enable=YES改为NO3、vi /etc/vsftpd/ftpuser 将root注释掉4、如果提示 500 OOPS cannot change directory:/ro...
分类:
系统相关 时间:
2014-07-19 15:28:00
阅读次数:
349
file/seek.c#include "apue.h"intmain(void){ if (lseek(STDIN_FILENO, 0, SEEK_CUR) == -1) printf("cannot seek\n"); else printf("seek OK\n"); exit(0);}
分类:
其他好文 时间:
2014-07-18 23:27:20
阅读次数:
187
在Java里面,当A类继承B类,在B类里面重写(或叫覆写/override)A类的方法时,有一个规定,那就是:子类的该方法的权限修饰符范围应该是大于等于父类。 class A{ protected method() { } } class B extends A{ private ...
分类:
编程语言 时间:
2014-07-18 20:39:24
阅读次数:
252
在 goods.php 文件,找到 $smarty->assign('goods', $goods);在它上面增加下面代码:方法一:$cat_arr = get_parent_cats($goods['cat_id']);foreach ($cat_arr AS $val) { $goods['t....
分类:
其他好文 时间:
2014-07-18 17:02:46
阅读次数:
161
Javascript刷新页面的几种方法:1 history.go(0)2 location.reload()3 location=location4 location.assign(location)5 document.execCommand('Refresh')6 window.navigate...
分类:
编程语言 时间:
2014-07-18 16:15:24
阅读次数:
219
一个constraint如果被定义成deferrable那么这个constraints可以在deferred和imediate两种状态相互转换。deferred只在transaction中有效,也就是只可以在transaction过程中使constraint失效,但如果transaction com...
分类:
其他好文 时间:
2014-07-18 14:21:24
阅读次数:
267
..\..\SYSTEM\usart\usart.c(1): error: #5: cannot open source input file "sys.h": No such file or directory
#include "..\sys\sys.h"这样就可以找到路径了
再次编译出现了问题
..\..\SYSTEM\usart\..\sys\sys.h(3): error: ...
分类:
其他好文 时间:
2014-07-18 13:33:31
阅读次数:
311
Example 5-8. date_format[日期格式]index.php:复制代码代码如下:$smarty = new Smarty;$smarty->assign('yesterday', strtotime('-1 day'));$smarty->display('index.tpl');...
分类:
Web程序 时间:
2014-07-17 18:15:03
阅读次数:
308
在ubuntu14.04上,通过qtcreator进行串口编程时出现:tryingtoopenfile"/dev/ttyS0"couldnotopenfile:权限不够portopenisfalsejgc>ls-al/dev/ttyS0
crw-rw----1rootdialout4,64Mar2321:00/dev/ttyS0
jgc>echoxyzzy>/dev/ttyS0
bash:/dev/ttyS0:Permissiondenied解决方..
分类:
其他好文 时间:
2014-07-17 08:01:38
阅读次数:
455