<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>DDscorpio的专栏 - Coding....</title><link>http://blog.csdn.net/ddscorpio/category/243453.aspx</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Tue, 01 Apr 2008 22:37:18 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>ddscorpio</dc:creator><title>没有虚框</title><link>http://blog.csdn.net/ddscorpio/archive/2008/03/26/2219191.aspx</link><pubDate>Wed, 26 Mar 2008 11:26:00 GMT</pubDate><guid>http://blog.csdn.net/ddscorpio/archive/2008/03/26/2219191.aspx</guid><wfw:comment>http://blog.csdn.net/ddscorpio/comments/2219191.aspx</wfw:comment><comments>http://blog.csdn.net/ddscorpio/archive/2008/03/26/2219191.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ddscorpio/comments/commentRss/2219191.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2219191</trackback:ping><description>没有虚框&lt;img src ="http://blog.csdn.net/ddscorpio/aggbug/2219191.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ddscorpio</dc:creator><title>8天时间的小安慰</title><link>http://blog.csdn.net/ddscorpio/archive/2007/09/16/1787318.aspx</link><pubDate>Sun, 16 Sep 2007 17:31:00 GMT</pubDate><guid>http://blog.csdn.net/ddscorpio/archive/2007/09/16/1787318.aspx</guid><wfw:comment>http://blog.csdn.net/ddscorpio/comments/1787318.aspx</wfw:comment><comments>http://blog.csdn.net/ddscorpio/archive/2007/09/16/1787318.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ddscorpio/comments/commentRss/1787318.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1787318</trackback:ping><description>都是一些化工企业的门面网站。难度不大，主要是锻炼我的美工。说到这个，我还真得到不少。

关于这些企业门面网站，我的想法是：要大气，简单，体现和谐积极向上。

1.广州强展 

  亮度高点的朱红和黯淡的冷灰再加暖蓝。
&lt;img src ="http://blog.csdn.net/ddscorpio/aggbug/1787318.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ddscorpio</dc:creator><title>DOM小试牛刀</title><link>http://blog.csdn.net/ddscorpio/archive/2007/08/29/1762978.aspx</link><pubDate>Wed, 29 Aug 2007 00:22:00 GMT</pubDate><guid>http://blog.csdn.net/ddscorpio/archive/2007/08/29/1762978.aspx</guid><wfw:comment>http://blog.csdn.net/ddscorpio/comments/1762978.aspx</wfw:comment><comments>http://blog.csdn.net/ddscorpio/archive/2007/08/29/1762978.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/ddscorpio/comments/commentRss/1762978.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1762978</trackback:ping><description>最近做个小项目，用到了DOM进行动态写标签。

JS：

function addLoadEvent(func){
 var oldonload=window.onload;//获取已经存在的window.onload事件

if (typeof window.onload!='function'){
  window.onload=func;//如果window.onload没有事件，那就将func赋给它
  }else {
   window.onload=function(){
    oldonload();
    func();//否则将func加到window.onload所有事件的末尾
   }
 }
}

function insertCopyright(){
 var parentEle=document.getElementsByTagName("body")[0].lastChild;//获取BODY的最后一个节点元素
 if (parentEle){
  createEles(parentEle);//如果这个元素存在，&lt;img src ="http://blog.csdn.net/ddscorpio/aggbug/1762978.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ddscorpio</dc:creator><title>软件文档编写向导</title><link>http://blog.csdn.net/ddscorpio/archive/2006/12/09/1436440.aspx</link><pubDate>Sat, 09 Dec 2006 19:14:00 GMT</pubDate><guid>http://blog.csdn.net/ddscorpio/archive/2006/12/09/1436440.aspx</guid><wfw:comment>http://blog.csdn.net/ddscorpio/comments/1436440.aspx</wfw:comment><comments>http://blog.csdn.net/ddscorpio/archive/2006/12/09/1436440.aspx#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/ddscorpio/comments/commentRss/1436440.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1436440</trackback:ping><description>  

 

软件文档编写向导
文档分类
项目包括如下几类文档；
 
项目管理文档。包括：《软件项目计划》、《项目进度报告》、《项目开发总结报告》
软件开发文档。包括：《需求规格说明》、《概要设计说明》、《详细设计说明》。
软件测试文档。包括：《测试计划》、《软件测试分析报告》。
产品资料。包括：《用户操作手册》。
文档的版本号
    本项目文档的版本号由以圆点隔开的两个数字组成，第一个数字表示出版号，第二个数字表示该版的修订号。具体用法如下：
当文档初版时，版本号为 V1.0；
当文档被局部修订时，出版号不变，修订号增1。例如，对初版文档作了第一次修订，则版本号为 V1.1；
当文档被全面改写或局部修订累积较多导致文档发生全局变化时，出版号增1。例如，在 V1.5 版的基础上作了一次全面修订，则新版本号为 V2.0。
文档的标识
    项目所产生的文档都有唯一、特定的编码，其构成如下：
项目标志-任务标识-文档类型-文档树中的编号-版本号/序号
    其中：
项目标志：本项目的标识，表明本项目是“XXXX”。
任务标识：少于八个字母，&lt;img src ="http://blog.csdn.net/ddscorpio/aggbug/1436440.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ddscorpio</dc:creator><title>EXCEL 更新 ACCESS数据库。</title><link>http://blog.csdn.net/ddscorpio/archive/2006/10/15/1334955.aspx</link><pubDate>Sun, 15 Oct 2006 00:50:00 GMT</pubDate><guid>http://blog.csdn.net/ddscorpio/archive/2006/10/15/1334955.aspx</guid><wfw:comment>http://blog.csdn.net/ddscorpio/comments/1334955.aspx</wfw:comment><comments>http://blog.csdn.net/ddscorpio/archive/2006/10/15/1334955.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ddscorpio/comments/commentRss/1334955.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1334955</trackback:ping><description>前段时间写的。多谢一个朋友帮我找出错误。哈哈。





数据更新













  
&lt;img src ="http://blog.csdn.net/ddscorpio/aggbug/1334955.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ddscorpio</dc:creator><title>给XX公司网站做的一个模块。很丑陋。</title><link>http://blog.csdn.net/ddscorpio/archive/2006/09/30/1313186.aspx</link><pubDate>Sat, 30 Sep 2006 22:53:00 GMT</pubDate><guid>http://blog.csdn.net/ddscorpio/archive/2006/09/30/1313186.aspx</guid><wfw:comment>http://blog.csdn.net/ddscorpio/comments/1313186.aspx</wfw:comment><comments>http://blog.csdn.net/ddscorpio/archive/2006/09/30/1313186.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ddscorpio/comments/commentRss/1313186.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1313186</trackback:ping><description>没来的及整理。过两天回家了，中秋了。
这个新的BLOG还行。。。&lt;img src ="http://blog.csdn.net/ddscorpio/aggbug/1313186.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>