1、为DataTable添加列(1)添加列DataTable tbl =
ds.Tables.Add("User");DataColumn col
=tbl.Columns.Add("UserID",typeof(int));col.AllowDBNull = false;col.MaxLength...
分类:
其他好文 时间:
2014-06-16 08:11:39
阅读次数:
263
Set theTIdHTTP.HandleRedirectsproperty to True.
It is False by default.function FetchUrl(const url: string): string; var idhttp
: TIdHTTP; begin id...
分类:
其他好文 时间:
2014-06-12 14:53:09
阅读次数:
286
断言
断言是一种实时检测条件是否为true的方法如果条件为true,那么代码继续执行如果条件为false,就抛出错误信息,直接终止程序的运行断言的用法使用全局的assert函数passert函数接收一个Bo...
分类:
其他好文 时间:
2014-06-12 13:20:08
阅读次数:
283
1、批量去除超链接:打开
statics/js/ckeditor/ckeditor.js找到:$.execCommand(‘unlink’,false,null);修改为:$.execCommand(‘unlink’,false,true);2、上传图片自动添加ALT参数修改
statics/js/...
分类:
其他好文 时间:
2014-06-12 11:40:47
阅读次数:
401
continue: return true;break: return
false;$("#oGrid").each(function (i, v) {if (i == 0) return true;});
分类:
Web程序 时间:
2014-06-12 07:50:05
阅读次数:
317
操作方法:为页面的ScriptManager控件添加EnablePartialRendering="false"的属性
此方法不是直接解决或规避问题的,是为了将详细的页面错误显示出来,以便找到需要修正的地方,个人觉得这才是正道嘛,不能躲避错误,而应尽量不让错误发生。 ---》
找出错误 -- 》 修...
分类:
其他好文 时间:
2014-06-12 06:14:52
阅读次数:
617