<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>Poor Eric &amp;gt;_&amp;lt; </title><link>http://blog.csdn.net/ericfine/</link><description>ASP.NET 2.0 Newbie</description><dc:language>zh-CN</dc:language><lastUpdateTime>Sun, 27 May 2007 23:41:43 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>Eric</dc:creator><title>Eric的模板引擎 EFPlatform.CodeGenerator</title><link>http://blog.csdn.net/ericfine/archive/2007/06/28/1670811.aspx</link><pubDate>Thu, 28 Jun 2007 21:51:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2007/06/28/1670811.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1670811.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2007/06/28/1670811.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1670811.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1670811</trackback:ping><description>这个东东是去年我看着ASP:标记突发奇想花4天时间设计编写的类库, 原名叫 HtmlGenerator, 最近发现PHP和JAVA有很多类似的项目, 但是都设计的很渣(不同意的表打我@_@), 于是把 HtmlGenerator 重构了一下, 改叫 CodeGenerator. 配合我的数据库迁移工具和数据库实体类生成品..... 好像跑题了 -____-

CodeGenerator 的特点:
1. 标记简结实用, 所有网页美工都能在一分钟内掌握. 而且不与HTML标准冲突, 模板页可用任何WYSIWYG工具编辑, 和编辑普通HTML网完全相同.
2. 标记只与表示层相关, 不包括任何业务逻辑, 丝毫不影响你应用多层结构.
3. 标记到后台被解析成了生成器对象, 完全面向对象, 不像绝大多数生成器要死嗑字符串.
4. 生成器对象使用DataSource属性取得数据, DataSource可以为  简单值类型(如 int, DateTIme), 也可以为简单数组(如 decimal[], string[]), 还可以为ADO.NET数据集(如DataTable), 甚至单个&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1670811.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>Eric 的随机文件名 生成方法</title><link>http://blog.csdn.net/ericfine/archive/2007/05/27/1627656.aspx</link><pubDate>Sun, 27 May 2007 23:42:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2007/05/27/1627656.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1627656.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2007/05/27/1627656.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1627656.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1627656</trackback:ping><description>利用 当前时间与2000-1-1 0:0:0 相差的毫秒数转成36进制字符串 加上4位随机字符串 生成一个随机文件名. 算是长度比较短而唯一性比较高的随机文件名生成方法了&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1627656.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>用于下载HTML中远程图片的方法</title><link>http://blog.csdn.net/ericfine/archive/2007/05/25/1624976.aspx</link><pubDate>Fri, 25 May 2007 08:46:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2007/05/25/1624976.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1624976.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2007/05/25/1624976.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1624976.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1624976</trackback:ping><description>RequestFileFromHtml(string html, string fileUrl, string filePath, string reservedHost)&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1624976.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>JavaScript: 使用面向对象的技术创建高级 Web 应用程序</title><link>http://blog.csdn.net/ericfine/archive/2007/05/15/1610441.aspx</link><pubDate>Tue, 15 May 2007 19:44:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2007/05/15/1610441.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1610441.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2007/05/15/1610441.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1610441.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1610441</trackback:ping><description>JavaScript 对象是词典
JavaScript 函数是最棒的
构造函数而不是类
原型
静态属性和方法
闭包
模拟私有属性
从类继承
模拟命名空间
应当这样编写 JavaScript 代码吗？
展望
&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1610441.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>用DIV+CSS实现文字及面板阴影效果</title><link>http://blog.csdn.net/ericfine/archive/2007/04/27/1587080.aspx</link><pubDate>Fri, 27 Apr 2007 12:36:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2007/04/27/1587080.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1587080.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2007/04/27/1587080.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1587080.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1587080</trackback:ping><description>不使用IE的Filter,用DIV+CSS实现实现文字及面板阴影效果, 在IE及FF中都可用&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1587080.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>用CSS控制FireFox的折行问题</title><link>http://blog.csdn.net/ericfine/archive/2006/10/27/1353639.aspx</link><pubDate>Fri, 27 Oct 2006 18:46:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/10/27/1353639.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1353639.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/10/27/1353639.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1353639.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1353639</trackback:ping><description>CSS在网页表现上得到广泛的应用。其中，word-wrap属性用于控制文字的折行，但是该属性是微软IE的专有属性，其它浏览器并不支持&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1353639.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>在 ASP.NET 中执行 URL 重写</title><link>http://blog.csdn.net/ericfine/archive/2006/10/15/1335662.aspx</link><pubDate>Sun, 15 Oct 2006 17:46:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/10/15/1335662.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1335662.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/10/15/1335662.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1335662.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1335662</trackback:ping><description>介绍如何使用 Microsoft ASP.NET 执行动态 URL 重写。URL 重写是截取传入 Web 请求并自动将请求重定向到其他 URL 的过程。讨论实现 URL 重写的各种技术，并介绍执行 URL 重写的一些实际情况。&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1335662.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>ASP.NET 2.0 中的异步页</title><link>http://blog.csdn.net/ericfine/archive/2006/09/21/1261636.aspx</link><pubDate>Thu, 21 Sep 2006 16:51:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/09/21/1261636.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1261636.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/09/21/1261636.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1261636.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1261636</trackback:ping><description>ASP.NET 2.0 提供了大量新功能，其中包括声明性数据绑定和母版页，成员和角色管理服务等。但我认为最棒的功能是异步页，接下来让我告诉您其中的原因。&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1261636.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>Eric的行政区(省市)下列表控件和标签控件</title><link>http://blog.csdn.net/ericfine/archive/2006/09/12/1215119.aspx</link><pubDate>Tue, 12 Sep 2006 23:31:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/09/12/1215119.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1215119.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/09/12/1215119.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1215119.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1215119</trackback:ping><description>无&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1215119.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>通过避免下列 10 个常见 ASP.NET 缺陷使网站平稳运行</title><link>http://blog.csdn.net/ericfine/archive/2006/09/12/1211228.aspx</link><pubDate>Tue, 12 Sep 2006 10:40:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/09/12/1211228.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1211228.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/09/12/1211228.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1211228.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1211228</trackback:ping><description>本文将讨论： 
• 缓存和 Forms 身份验证  
• 视图状态和会话状态 
• 配置文件属性序列化  
• 线程池饱和  
• 模拟和设置配置文件
 
本文使用了下列技术：
.NET Framework、ASP.NET、Windows Server 2003
&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1211228.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>Web 测试的创作与调试技术</title><link>http://blog.csdn.net/ericfine/archive/2006/09/04/1175149.aspx</link><pubDate>Mon, 04 Sep 2006 11:01:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/09/04/1175149.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1175149.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/09/04/1175149.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1175149.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1175149</trackback:ping><description>学习有关 Visual Studio 2005 Web 测试的更多知识，包括 Web 测试引擎和记录器如何工作，以及如何创建有效的 Web 测试&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1175149.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>MSDN Library May 2006 Edition MS官网下载</title><link>http://blog.csdn.net/ericfine/archive/2006/08/28/1133391.aspx</link><pubDate>Mon, 28 Aug 2006 18:02:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/08/28/1133391.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1133391.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/08/28/1133391.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1133391.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1133391</trackback:ping><description>MSDN Library May 2006 Edition MS官网下载

http://www.microsoft.com/downloads/details.aspx?FamilyId=373930CB-A3D7-4EA5-B421-DD6818DC7C41&amp;displaylang=en&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1133391.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>Eric的QZONE模仿工程 一期</title><link>http://blog.csdn.net/ericfine/archive/2006/08/15/1067340.aspx</link><pubDate>Tue, 15 Aug 2006 21:18:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/08/15/1067340.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1067340.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/08/15/1067340.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1067340.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1067340</trackback:ping><description>先做了个空白页面, 放了一些动画图片上去, 可以随便拖动放置, 也可以用右键点击清除. 所有可控制的元素在这里统称为物件, 目前只是动画图片这一种.
菜单功能: 1. 保存布局 - 将当前页面内的物件布局保存到 ItemData.xml 文件中
　　　　　2. 恢复物件 - 恢复刚才用右键清除的物件
　　　　　3. 恢复布局 - 重新加载数据, 将物件布局还原到前面保存的状态
　　　　　4. 初始化布局 - 加载 XMLFile.xml 中的数据, 把物件布局还原到初始状态
&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1067340.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>Eric的四个无刷新(异步更新)示例</title><link>http://blog.csdn.net/ericfine/archive/2006/08/04/1016585.aspx</link><pubDate>Fri, 04 Aug 2006 01:31:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/08/04/1016585.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1016585.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/08/04/1016585.aspx#Feedback</comments><slash:comments>7</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1016585.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1016585</trackback:ping><description>实现效果: 动态取得服务器时间
实现效果: 证卷测试指数数据将每过几秒波动一次,增幅为±10%&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1016585.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Eric</dc:creator><title>Eric的日期选择下拉列表小控件</title><link>http://blog.csdn.net/ericfine/archive/2006/08/03/1012680.aspx</link><pubDate>Thu, 03 Aug 2006 01:13:00 GMT</pubDate><guid>http://blog.csdn.net/ericfine/archive/2006/08/03/1012680.aspx</guid><wfw:comment>http://blog.csdn.net/ericfine/comments/1012680.aspx</wfw:comment><comments>http://blog.csdn.net/ericfine/archive/2006/08/03/1012680.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ericfine/comments/commentRss/1012680.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1012680</trackback:ping><description>利用JS实现日期选择功能,包括润年2月的日数变更, 简单实用!

主要属性: Date&lt;img src ="http://blog.csdn.net/ericfine/aggbug/1012680.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>