<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<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>阿飞博客 - 程序开发</title><link>http://blog.chengfei.net/</link><description>分享互联网 - </description><generator>RainbowSoft Studio Z-Blog 1.8 Spirit Build 80722</generator><language>zh-CN</language><copyright>Copyright &amp;amp;copy; Www.ChengFei.Net. All Rights Reserved. 皖ICP备07003132号</copyright><pubDate>Thu, 09 Sep 2010 14:32:31 +0800</pubDate><item><title>Dreamweaver CS4 提示“以下翻译器没有被装载，由于错误 Server Model SSI.htm”</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/41.html</link><pubDate>Sat, 31 Jul 2010 02:41:35 +0800</pubDate><guid>http://blog.chengfei.net/archives/41.html</guid><description><![CDATA[<p>Dreamweaver cs4编辑html页面时提示：<br /><br />&nbsp;&nbsp; &nbsp;以下翻译器没有被装载,由于错误 Server Model SSI.htm<br /><br />&nbsp;&nbsp; &nbsp;引起错误的原因有很多，最有可能的便是Configuration内的JS脚本损坏。</p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/41.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=41</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=41&amp;key=04172510</trackback:ping></item><item><title>正则表达式之域名</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/39.html</link><pubDate>Thu, 24 Dec 2009 23:57:51 +0800</pubDate><guid>http://blog.chengfei.net/archives/39.html</guid><description><![CDATA[<p><span class="code">^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$</span></p><p>正确：regexlib.com | this.is.a.museum | 3com.com<br />错误：notadomain-.com | helloworld.c | .oops.org</p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/39.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=39</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=39&amp;key=f8528e4b</trackback:ping></item><item><title>支付宝在线支付返回时 提示msxml3.dll 错误 '80072ee7'</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/38.html</link><pubDate>Tue, 15 Dec 2009 19:42:48 +0800</pubDate><guid>http://blog.chengfei.net/archives/38.html</guid><description><![CDATA[<p><span style="font-family: 宋体; font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-hansi-font-family: 'Times New Roman'; mso-ascii-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">The server name or address could not be resolved </span><br /><span style="font-family: 宋体; font-size: 10.5pt; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-hansi-font-family: 'Times New Roman'; mso-ascii-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br />WEB服务器必须安装并启用MSXML3或更高版本的XML解析器以支持XML数据解析及服务器安全HTTP访问。 IE6自带，XP系统自带。</span></p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/38.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=38</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=38&amp;key=1ccca206</trackback:ping></item><item><title>用P3P header解决iframe跨域访问cookie/session</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/28.html</link><pubDate>Tue, 19 May 2009 09:46:01 +0800</pubDate><guid>http://blog.chengfei.net/archives/28.html</guid><description><![CDATA[<p>1.页面里的COOKIE不能是浏览器进程的COOKIE(包括验证票和不设置超时时间的COOKIE),，否则跨域会取不到.这点做跨域COOKIE的人比较少提到。不过实际上留意下几家大学做的方案，有细微的提到他们的验证模块里的COOKIE是有设置超时时间的；<br /><br />2.当利用IFRAME时，记得要在相应的动态页的页头添加一下P3P的信息，否则IE会自觉的把IFRAME框里的COOKIE给阻止掉,产生问题.本身不保存自然就取不到了。这个其实是FRAMESET和COOKIE的问题,用FRAME或者IFRAME都会遇到；<br /><br />3.测试时输出TRACE，会减少很多测试的工作量。</p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/28.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=28</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=28&amp;key=9f404cbf</trackback:ping></item><item><title>简单的ASP加密解密函数</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/25.html</link><pubDate>Sat, 09 May 2009 10:44:31 +0800</pubDate><guid>http://blog.chengfei.net/archives/25.html</guid><description><![CDATA[<p>'适用于任何字符，包括空格和url冲突的&quot;&amp;&quot;&quot;?&quot;&quot;％&quot;汉字等符号<br />'简单加密，可以改造成移位加密，比如每个字符Asc码值增加或减少一个数字<br />'可以改造成移位随机加密。<br />'比如每个字符前有一个随机数字，表示该字符Asc码值增加或减少这个随机数字</p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/25.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=25</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=25&amp;key=c6f10120</trackback:ping></item><item><title>如何在FCKeditor 2.6中添加插入视频和音频功能</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/22.html</link><pubDate>Mon, 20 Apr 2009 09:18:44 +0800</pubDate><guid>http://blog.chengfei.net/archives/22.html</guid><description><![CDATA[<p>FCKeditor 是现在用的最多的可视编辑器，阿飞也在使用该编辑器为客户开发程序，应客户要求，添加了插入视频和音频的功能，因为2.6版的修改可能和其他版本不一样，所以我把修改的地方列举出来。</p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/22.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=22</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=22&amp;key=1e3fe833</trackback:ping></item><item><title>25个顶级PHP模板引擎</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/20.html</link><pubDate>Mon, 24 Nov 2008 16:29:55 +0800</pubDate><guid>http://blog.chengfei.net/archives/20.html</guid><description><![CDATA[<p><a href="http://smarty.php.net/" target="_blank"><font color="#ff7800">Smarty</font></a><br />Smarty的特点是将模板编译成PHP脚本，然后执行这些脚本。很快，非常灵活。</p><p><a href="http://www.phpguru.org/static/template.html" target="_blank"><font color="#ff7800">Heyes Template Class</font></a><br />...</p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/20.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=20</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=20&amp;key=8dc041ec</trackback:ping></item><item><title>python几种开发工具介绍</title><author>chengfei.net@gmail.com (阿飞)</author><link>http://blog.chengfei.net/archives/18.html</link><pubDate>Tue, 21 Oct 2008 11:22:33 +0800</pubDate><guid>http://blog.chengfei.net/archives/18.html</guid><description><![CDATA[<p>1 IDLE<br />1.1 IDLE是python创初人Guido van Rossum使用python and Tkinter来创建的一个集成开发环境。要使用IDLE必须安装python and Tkinter。<br />1.2 特性：自动缩进，彩色编码，命令历史(Alt+p,Alt+n)和单词自动(Alt+/)完成。<br />1.3 用IDLE执行Tkinter程序，不要在程序中包括mainloop。IDLE本身就是Tkinter应用程序，它会自动调用mainloop。再调用一次mainloop会与IDLE的事件循环冲突，造成运行时错误。<br /><br />2 BlackAdder<br />2.1 BlackAdder支持windows and linux环境。用它创建的程序可在任何一种平台上运行，负责维护它的是TheKompany.com。他们发布了该软件的个人版 ，只提供有限的支持；以及专业版，需要许可，面向商业软件开发者。详情请访问<a target="_blank" href="http://www.thekompany.com/products/blackadder%E3%80%82">www.thekompany.com/products/blackadder。</a></p>]]></description><category>程序开发</category><comments>http://blog.chengfei.net/archives/18.html#comment</comments><wfw:comment>http://blog.chengfei.net/</wfw:comment><wfw:commentRss>http://blog.chengfei.net/feed.asp?cmt=18</wfw:commentRss><trackback:ping>http://blog.chengfei.net/cmd.asp?act=tb&amp;id=18&amp;key=5978effb</trackback:ping></item></channel></rss>
