<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_挑战自我</title><subtitle type="text">超越自我，不断的接受和面对挑战</subtitle><id>http://feed.cnblogs.com/blog/u/4658/rss</id><updated>2011-10-13T14:37:31Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/4658/rss"/><entry><id>http://www.cnblogs.com/jierry/archive/2006/04/20/380612.html</id><title type="text">ASP.NET2.0控件一览---标准控件(2)</title><summary type="text">前言:上一篇文章(http://jierry.cnblogs.com/archive/2006/04/19/379503.html)谈了谈ASP.NET2.0标准控件中与ASP.NET1.X已存在的相同控件的一些差别,本篇开始将介绍ASP.NET2.0标准控件里新增控件的一些特性,帮助大家更好的掌握新控件.让我们马上开始吧!BulletedList:该控件创建一个无序或有序（编号的）的项列表，它们...</summary><published>2006-04-20T12:36:00Z</published><updated>2006-04-20T12:36:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2006/04/20/380612.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2006/04/20/380612.html"/><content type="text">前言:上一篇文章(http://jierry.cnblogs.com/archive/2006/04/19/379503.html)谈了谈ASP.NET2.0标准控件中与ASP.NET1.X已存在的相同控件的一些差别,本篇开始将介绍ASP.NET2.0标准控件里新增控件的一些特性,帮助大家更好的掌握新控件.让我们马上开始吧!BulletedList:该控件创建一个无序或有序（编号的）的项列表，它们...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2006/04/19/379503.html</id><title type="text">ASP.NET2.0控件一览---标准控件(1)</title><summary type="text">前言:相比ASP.NET1.X,ASP.NET2.0带来很多的改变,本系列将从控件的方面来看看2.0的控件方面的各种新增和改进.本系列文章假设读者已经对1.x的控件比较的熟悉,因为2.0和1.x很多相同的地方将不会涉及,着重谈谈不一样的地方,方便大家对ASP.NET2.0的控件有进一步的了解和更快的掌握.(PS:本系列算是自己的学习心得,很多地方不足,望大家指正.)好了,废话少说,让我们开始进入A...</summary><published>2006-04-19T12:14:00Z</published><updated>2006-04-19T12:14:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2006/04/19/379503.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2006/04/19/379503.html"/><content type="text">前言:相比ASP.NET1.X,ASP.NET2.0带来很多的改变,本系列将从控件的方面来看看2.0的控件方面的各种新增和改进.本系列文章假设读者已经对1.x的控件比较的熟悉,因为2.0和1.x很多相同的地方将不会涉及,着重谈谈不一样的地方,方便大家对ASP.NET2.0的控件有进一步的了解和更快的掌握.(PS:本系列算是自己的学习心得,很多地方不足,望大家指正.)好了,废话少说,让我们开始进入A...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2006/03/15/350784.html</id><title type="text">控件开发时两种JS嵌入资源方式的使用</title><summary type="text">第一种：直接把要嵌入的JS文件属性设置为“嵌入的资源”。protectedoverridevoidOnInit(EventArgse){base.OnInit(e);if(!base.Page.IsStartupScriptRegistered("Script")){Assemblyassembly=typeof(TestControl).Assembly;StreamRe...</summary><published>2006-03-15T09:05:00Z</published><updated>2006-03-15T09:05:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2006/03/15/350784.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2006/03/15/350784.html"/><content type="text">第一种：直接把要嵌入的JS文件属性设置为“嵌入的资源”。protectedoverridevoidOnInit(EventArgse){base.OnInit(e);if(!base.Page.IsStartupScriptRegistered("Script")){Assemblyassembly=typeof(TestControl).Assembly;StreamRe...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2006/03/06/344251.html</id><title type="text">T-SQL tips(1)临时表和表变量</title><summary type="text">基本原则：能用表变量就用表变量。实在不行才使用临时表。如与动态语句结合、外部需要使用等，就需要临时表。表变量主要开销系统的内存，而临时表则使用tempdb。对于小数据量的中间数据存储，可以使用表变量，而当需要临时保存的数据量很庞大时，建议使用临时表。具体使用表变量还是临时表，可以根据系统的运行状况来调整。declare@tbtable(idint,namevarchar(50),ageint)--...</summary><published>2006-03-06T13:14:00Z</published><updated>2006-03-06T13:14:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2006/03/06/344251.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2006/03/06/344251.html"/><content type="text">基本原则：能用表变量就用表变量。实在不行才使用临时表。如与动态语句结合、外部需要使用等，就需要临时表。表变量主要开销系统的内存，而临时表则使用tempdb。对于小数据量的中间数据存储，可以使用表变量，而当需要临时保存的数据量很庞大时，建议使用临时表。具体使用表变量还是临时表，可以根据系统的运行状况来调整。declare@tbtable(idint,namevarchar(50),ageint)--...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2005/12/28/306943.html</id><title type="text">Flash Control for ASP.NET 2.0-Include Flash movies in your aspx pages</title><summary type="text">FlashControl is a free ASP.NET 2.0 server control which allow you to add swf Flash movies in your ASP.NET 2.0 projects. As any WebControl, you can add FlashControl in Visual Studio 2005 Toolbox, and j...</summary><published>2005-12-28T15:10:00Z</published><updated>2005-12-28T15:10:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2005/12/28/306943.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2005/12/28/306943.html"/><content type="text">FlashControl is a free ASP.NET 2.0 server control which allow you to add swf Flash movies in your ASP.NET 2.0 projects. As any WebControl, you can add FlashControl in Visual Studio 2005 Toolbox, and j...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2005/11/07/270804.html</id><title type="text">为DataGrid创建自定义列控件（四）</title><summary type="text">全选和多选的功能在DataGrid中使用的时候很多,以前我们都是创建CheckBox模板列,然后在后台中捕获ChecnkBox的选择情况来实现全选或多选.现在为了加快开发的速度,使用这个CheckBoxColumn列控件,可以很方便的实现多选或全选的功能. 代码如下: CheckBoxColumnCode highlighting produced by Actipro CodeHighlight...</summary><published>2005-11-07T08:16:00Z</published><updated>2005-11-07T08:16:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2005/11/07/270804.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2005/11/07/270804.html"/><content type="text">全选和多选的功能在DataGrid中使用的时候很多,以前我们都是创建CheckBox模板列,然后在后台中捕获ChecnkBox的选择情况来实现全选或多选.现在为了加快开发的速度,使用这个CheckBoxColumn列控件,可以很方便的实现多选或全选的功能. 代码如下: CheckBoxColumnCode highlighting produced by Actipro CodeHighlight...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2005/10/28/263999.html</id><title type="text">为DataGrid创建自定义列控件（三）</title><summary type="text">通过前面两篇文章的学习，大家对自定义列控件的基本知识都掌握了，本节为大家巩固下前面学习的东西，以上篇文章为基础，扩展审查列控件，使它能审查多个单词。 我们通过把要检查的单词和替换的单词保存在XML文件中，这样便于修改。XML文件如下（Text.xml）: &lt;?xmlversion="1.0"encoding="utf-8"?&gt;&lt;censors&gt;&lt;censor&gt;&amp;...</summary><published>2005-10-28T09:25:00Z</published><updated>2005-10-28T09:25:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2005/10/28/263999.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2005/10/28/263999.html"/><content type="text">通过前面两篇文章的学习，大家对自定义列控件的基本知识都掌握了，本节为大家巩固下前面学习的东西，以上篇文章为基础，扩展审查列控件，使它能审查多个单词。 我们通过把要检查的单词和替换的单词保存在XML文件中，这样便于修改。XML文件如下（Text.xml）: &lt;?xmlversion="1.0"encoding="utf-8"?&gt;&lt;censors&gt;&lt;censor&gt;&amp;...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2005/10/28/263918.html</id><title type="text">为DataGrid创建自定义列控件（二）</title><summary type="text">通过上篇文章的学习，相信大家都对简单的自定义列控件比较熟悉了，在本节中将创建较为复杂的列控件，现在让我们开始吧。相信大家肯定看到过这种情况，在评论的时候一些恶意的词语都会被**屏蔽掉，本节我们就来创建一个这样的审查的列控件CensorColumn。在上篇文章的LimitColumn中，通过继承BoundColumn类，然后重写FormatDataValue方法，以达到格式字段内容的功能，本节的这个...</summary><published>2005-10-28T08:02:00Z</published><updated>2005-10-28T08:02:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2005/10/28/263918.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2005/10/28/263918.html"/><content type="text">通过上篇文章的学习，相信大家都对简单的自定义列控件比较熟悉了，在本节中将创建较为复杂的列控件，现在让我们开始吧。相信大家肯定看到过这种情况，在评论的时候一些恶意的词语都会被**屏蔽掉，本节我们就来创建一个这样的审查的列控件CensorColumn。在上篇文章的LimitColumn中，通过继承BoundColumn类，然后重写FormatDataValue方法，以达到格式字段内容的功能，本节的这个...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2005/10/28/263736.html</id><title type="text">为DataGrid创建自定义列控件（一）</title><summary type="text">DataGrid中为我们提供了5种常用的列控件• BoundColumn• ButtonColumn• EditCommandColumn• HyperLinkColumn• TemplateColumn通常情况下，这5种列控件都能够完成我们大部分的开发，但是有时遇到特殊情况下，为了简化开发，自定义列控件就派上的用场。在开发以前，让我们先...</summary><published>2005-10-28T04:25:00Z</published><updated>2005-10-28T04:25:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2005/10/28/263736.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2005/10/28/263736.html"/><content type="text">DataGrid中为我们提供了5种常用的列控件• BoundColumn• ButtonColumn• EditCommandColumn• HyperLinkColumn• TemplateColumn通常情况下，这5种列控件都能够完成我们大部分的开发，但是有时遇到特殊情况下，为了简化开发，自定义列控件就派上的用场。在开发以前，让我们先...</content></entry><entry><id>http://www.cnblogs.com/jierry/archive/2005/08/30/225783.html</id><title type="text">（转）SQLServer和Oracle的常用函数对比</title><summary type="text">---------数学函数1.绝对值 S:select abs(-1) valueO:select abs(-1) value from dual2.取整(大) S:select ceiling(-1.001) value O:select ceil(-1.001) value from dual3.取整（小） S:select floor(-1.001) valu...</summary><published>2005-08-30T01:24:00Z</published><updated>2005-08-30T01:24:00Z</updated><author><name>jierry</name><uri>http://www.cnblogs.com/jierry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jierry/archive/2005/08/30/225783.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jierry/archive/2005/08/30/225783.html"/><content type="text">---------数学函数1.绝对值 S:select abs(-1) valueO:select abs(-1) value from dual2.取整(大) S:select ceiling(-1.001) value O:select ceil(-1.001) value from dual3.取整（小） S:select floor(-1.001) valu...</content></entry></feed>
