上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 45 下一页

2010年12月23日

int 转 DateTime 需要注意的问题

摘要: 一个int值转换为DateTime 需要从 1970年1月1日0点0分0秒开始. 但是必须明确,这个时间是标准时间,所以不是北京时间. 数据库中数据的时间都是以标准时间为准绳的. 所以必须转换到当前时间, 中国是 +8 , 可以简单的调用 ToLocalTime 达到效果. ... 阅读全文

posted @ 2010-12-23 10:49 norsd 阅读(120) 评论(0) 推荐(0) 编辑

2010年10月10日

一个小问题害死人。 看不见得错误!

摘要: 一个JS文件, 死活无法运行. 然后一段一段删除,一段一段黏贴. 发现原来有一段全角的空格, 真是看不见得错误! 阅读全文

posted @ 2010-10-10 21:11 norsd 阅读(80) 评论(0) 推荐(0) 编辑

2010年3月30日

C# WebBrowser External 注意问题

摘要: 1. External 类必须 [ComVisible(true)] 2. External 类必须 public class YourExternal[] 3. External 类函数必须 public , 否则 window.external 不可见。 阅读全文

posted @ 2010-03-30 11:32 norsd 阅读(154) 评论(0) 推荐(0) 编辑

2010年3月17日

IE6下 js 访问 document.body 为空.

摘要: document.body为空或不是对象 2009-10-13 21:34 把script的代码放到的下面 就可以了 这是由于引入的JS库在IE6中存在BUG from http://hi.baidu.com/accpandsvse/blog/item/2b3ba819... 阅读全文

posted @ 2010-03-17 09:24 norsd 阅读(107) 评论(0) 推荐(0) 编辑

2010年2月25日

不被jquery识别.

摘要: 不被jquery识别. ie6 以上. 阅读全文

posted @ 2010-02-25 05:23 norsd 阅读(90) 评论(0) 推荐(0) 编辑

2010年2月24日

PHP 的引用变量问题

摘要: $xml = '../data/news.xml' ; $qp = qp($xml, 'news_root')->children(); $arrData = array() ; $i = 0 ; foreach( $qp as $child ) { print_r( $arrData )... 阅读全文

posted @ 2010-02-24 17:08 norsd 阅读(151) 评论(0) 推荐(0) 编辑

EClipse for PHP 中文乱码问题

摘要: EClipse for PHP 中文乱码问题 UTF-8 格式的php,中文都是乱码. 如果此时在EClipse中输入中文会有 CP1252 错误( CP1252不支持xxxx ) 解决方法: windows->preferences->general 打开点击workspace ... 阅读全文

posted @ 2010-02-24 10:29 norsd 阅读(107) 评论(0) 推荐(0) 编辑

2010年2月21日

jquery append 返回值

摘要: jquery append container.append( control ) ; 返回的是 container 本身. 而不是control 这点与dom的做法不同. 阅读全文

posted @ 2010-02-21 08:59 norsd 阅读(343) 评论(0) 推荐(0) 编辑

2010年2月20日

html table 边缝问题

摘要: 纯css: 1 .在 table 的 css 中声明: border-collapse: collapse; border-spacing: 0; 2 .th td 的css 中声明: padding:0; 半纯css: 1.上同. 2. 很多朋友会说表现在结构中,这样不符合标准,那如... 阅读全文

posted @ 2010-02-20 23:30 norsd 阅读(490) 评论(0) 推荐(0) 编辑

ARGB 排布

摘要: ARGB 分别为 Alpha , Red , Green , Blue 比如一个数: 0xffc864d2 ff代表Alpha , c8代表Red , 64代表Green , d2代表Blue 而在文件中,因为小头排布的问题: 显示的是: d2 64 c8 ff . 阅读全文

posted @ 2010-02-20 21:09 norsd 阅读(125) 评论(0) 推荐(0) 编辑

上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 45 下一页

导航