03 2013 档案

摘要:抓取的网页table中的信息到数据库和excel中 阅读全文
posted @ 2013-03-18 10:18 带着蜗牛去散步 阅读(1724) 评论(0) 推荐(0)
摘要:--从第31条到第40条(M -N条)select top 10 * from TB_GoodsLicenseAssociation where idx not in (select top 30 idx from TB_GoodsLicenseAssociation)select top N-M+1 * from tablename where id not in (select top M-1 id from tablename) 阅读全文
posted @ 2013-03-14 15:28 带着蜗牛去散步 阅读(1272) 评论(0) 推荐(0)
摘要:一共有3个阶段1. 学习HTML, 能用和看懂基本的HTML标签(重点div, ul, li, span, a) 搞清楚table布局和div布局的不同和为什么要使用div布局2. 了解基本的js语法和使用3. 学习CSS, 重点搞清楚padding, margin, float和布局相关的属性4. 对照一个psd翻译成需要的html和css样式5. 学习使用firebug来调试网页————————————————————————————————————————————————1. 看看网页的W3C标准具体是什么?验证一下翻译的网页那些不符合W3C标准,如何改进。2. 看看什么是CSS Spr 阅读全文
posted @ 2013-03-13 11:22 带着蜗牛去散步 阅读(320) 评论(0) 推荐(0)