<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_.NET爱好者,网络篇</title><subtitle type="text">好好学习,天天向上</subtitle><id>http://feed.cnblogs.com/blog/u/21955/rss</id><updated>2009-06-26T08:34:59Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/21955/rss"/><entry><id>http://www.cnblogs.com/illele/archive/2009/06/26/1511666.html</id><title type="text">js收集</title><summary type="text">Test=function() { this.Top = 100; this.Left = 200;}var a=new Test();alert(a.Top);function Test() { return {"Top":100,"Left":200}; }var a = Test();alert(a.Top);</summary><published>2009-06-26T06:24:00Z</published><updated>2009-06-26T06:24:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/06/26/1511666.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/06/26/1511666.html"/><content type="text">Test=function() { this.Top = 100; this.Left = 200;}var a=new Test();alert(a.Top);function Test() { return {"Top":100,"Left":200}; }var a = Test();alert(a.Top);</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/06/17/1504775.html</id><title type="text">VS 2005 Debugger crashing with IE 8</title><summary type="text">最近新装了IE8，调试ASP.NET时发现，设置的断点被视而不见。google了一下解决方法：一、关掉所有的IE窗口再调试。二、摘自http://social.microsoft.com/Forums/en-US/vsdebug/thread/e2c795cd-b7a0-4fad-b7c9-b1ca40d7302e的Older versions of the Visual Studio Debug...</summary><published>2009-06-17T01:37:00Z</published><updated>2009-06-17T01:37:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/06/17/1504775.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/06/17/1504775.html"/><content type="text">最近新装了IE8，调试ASP.NET时发现，设置的断点被视而不见。google了一下解决方法：一、关掉所有的IE窗口再调试。二、摘自http://social.microsoft.com/Forums/en-US/vsdebug/thread/e2c795cd-b7a0-4fad-b7c9-b1ca40d7302e的Older versions of the Visual Studio Debug...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/06/04/1496299.html</id><title type="text">SQL 收集2</title><summary type="text">--修改表名称EXEC sp_rename 旧表名,新表名--修改表字段名称EXEC sp_rename '表.旧字段','新字段','COLUMN'--修改表字段类型alter table 表 alter column 字段 类型(如:int)--查询当前数据库名select name from [master].[dbo].[sysdatabases] Where DbId=(Select D...</summary><published>2009-06-04T08:13:00Z</published><updated>2009-06-04T08:13:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/06/04/1496299.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/06/04/1496299.html"/><content type="text">--修改表名称EXEC sp_rename 旧表名,新表名--修改表字段名称EXEC sp_rename '表.旧字段','新字段','COLUMN'--修改表字段类型alter table 表 alter column 字段 类型(如:int)--查询当前数据库名select name from [master].[dbo].[sysdatabases] Where DbId=(Select D...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/03/30/1425000.html</id><title type="text">ref与out区别(ref有进有出，而out只出不进)</title><summary type="text">C#基础：ref和out的区别ref和out的区别在C# 中，既可以通过值也可以通过引用传递参数。通过引用传递参数允许函数成员更改参数的值，并保持该更改。若要通过引用传递参数， 可使用ref或out关键字。ref和out这两个关键字都能够提供相似的功效，其作用也很像C中的指针变量。它们的区别是：1、使用ref型参数时，传入的参数必须先被初始化。对out而言，必须在方法中对其完成初始化。2、使用re...</summary><published>2009-03-30T04:32:00Z</published><updated>2009-03-30T04:32:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/03/30/1425000.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/03/30/1425000.html"/><content type="text">C#基础：ref和out的区别ref和out的区别在C# 中，既可以通过值也可以通过引用传递参数。通过引用传递参数允许函数成员更改参数的值，并保持该更改。若要通过引用传递参数， 可使用ref或out关键字。ref和out这两个关键字都能够提供相似的功效，其作用也很像C中的指针变量。它们的区别是：1、使用ref型参数时，传入的参数必须先被初始化。对out而言，必须在方法中对其完成初始化。2、使用re...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/03/23/1420069.html</id><title type="text">firefox.chrome等兼容性</title><summary type="text">1. document.form.item 问题 (1)现有问题： 现有代码中存在许多 document.formName.item("itemName") 这样的语句，不能在Firefox(火狐)下运行 (2)解决方法： 改用 document.formName.elements["elementName"] (3)其它 参见 2 2. 集合类对象问题 (1)现有问题： 现有代码中许多集合类对象...</summary><published>2009-03-23T14:39:00Z</published><updated>2009-03-23T14:39:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/03/23/1420069.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/03/23/1420069.html"/><content type="text">1. document.form.item 问题 (1)现有问题： 现有代码中存在许多 document.formName.item("itemName") 这样的语句，不能在Firefox(火狐)下运行 (2)解决方法： 改用 document.formName.elements["elementName"] (3)其它 参见 2 2. 集合类对象问题 (1)现有问题： 现有代码中许多集合类对象...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/03/18/1415802.html</id><title type="text">js获取控件位置</title><summary type="text"> //获取坐标位置  function getpos(e) {    var t=e.offsetTop;    var l=e.offsetLeft;  &amp;#...</summary><published>2009-03-18T12:09:00Z</published><updated>2009-03-18T12:09:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/03/18/1415802.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/03/18/1415802.html"/><content type="text"> //获取坐标位置  function getpos(e) {    var t=e.offsetTop;    var l=e.offsetLeft;  &amp;#...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/03/12/1409975.html</id><title type="text">.net 贬型 list</title><summary type="text">我以前经常使用Lotus Domino平台及其LotusScript语言。这门语言中我最喜欢的一个特性是List对象；它会简化使用相同对象的集合。后来我发现.NET框架2.0语言里也有一个类似（甚至更加强大）的特性。范型.NET框架2.0引入了一个叫做范型（generics）的重要概念。虽然范型常常都是用C#语言来讨论的，但是它事实上是.NET中间语言（Intermediate Language，...</summary><published>2009-03-12T13:33:00Z</published><updated>2009-03-12T13:33:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/03/12/1409975.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/03/12/1409975.html"/><content type="text">我以前经常使用Lotus Domino平台及其LotusScript语言。这门语言中我最喜欢的一个特性是List对象；它会简化使用相同对象的集合。后来我发现.NET框架2.0语言里也有一个类似（甚至更加强大）的特性。范型.NET框架2.0引入了一个叫做范型（generics）的重要概念。虽然范型常常都是用C#语言来讨论的，但是它事实上是.NET中间语言（Intermediate Language，...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/02/09/1386807.html</id><title type="text">SQL函数收集</title><summary type="text">TEXTVALID检查特定文本指针是否有效的text、ntext或image函数。SET ANSI_NULLS指定在与 Null 值一起使用等于 (=) 和不等于 (&lt;&gt;) 比较运算符时采用符合 ISO 标准的行为。(当 SET ANSI_NULLS 为 ON 时，即使column_name中包含空值，使用 WHEREcolumn_name=NULL的 SELECT 语句仍返回零行。即...</summary><published>2009-02-09T06:28:00Z</published><updated>2009-02-09T06:28:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/02/09/1386807.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/02/09/1386807.html"/><content type="text">TEXTVALID检查特定文本指针是否有效的text、ntext或image函数。SET ANSI_NULLS指定在与 Null 值一起使用等于 (=) 和不等于 (&lt;&gt;) 比较运算符时采用符合 ISO 标准的行为。(当 SET ANSI_NULLS 为 ON 时，即使column_name中包含空值，使用 WHEREcolumn_name=NULL的 SELECT 语句仍返回零行。即...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/02/03/1382931.html</id><title type="text">Convert和Cast比较</title><summary type="text">如果SQL Server程序员想将表达式从一种换为另一种，他可以从SQL Server 7和2000中自带的两种功能中做出选择。在存储过程或其他情况下，我们常常需要将数据从datetime型转化成varchar型；CONVERT和CAST就可以用于这种情况。由于SQL Server提供两种功能，因此应该选择哪种功能或应该在哪种情况下使用该功能就很容易让人困惑了。CONVERT是专对SQL Se...</summary><published>2009-02-03T03:01:00Z</published><updated>2009-02-03T03:01:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/02/03/1382931.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/02/03/1382931.html"/><content type="text">如果SQL Server程序员想将表达式从一种换为另一种，他可以从SQL Server 7和2000中自带的两种功能中做出选择。在存储过程或其他情况下，我们常常需要将数据从datetime型转化成varchar型；CONVERT和CAST就可以用于这种情况。由于SQL Server提供两种功能，因此应该选择哪种功能或应该在哪种情况下使用该功能就很容易让人困惑了。CONVERT是专对SQL Se...</content></entry><entry><id>http://www.cnblogs.com/illele/archive/2009/01/17/1377399.html</id><title type="text">AutoComplete控件(转)</title><summary type="text">在线智能输入建议是目前网站上一个非常流行的功能，该功能能够根据用户的输入显示一个在线提示列表。因此，用户只要输入部分关键字，就能够从在线提示列表中选择所需要的关键字。典型的效果如图2.8所示。图2.8 在线智能输入建议效果图如果使用ASP.NET和JavaScript技术实现在线智能输入建议这一功能，是非常复杂且比较烦琐的事情。ASP.NET AJAX Control Toolkit中...</summary><published>2009-01-17T02:07:00Z</published><updated>2009-01-17T02:07:00Z</updated><author><name>杰仔</name><uri>http://www.cnblogs.com/illele/</uri></author><link rel="alternate" href="http://www.cnblogs.com/illele/archive/2009/01/17/1377399.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/illele/archive/2009/01/17/1377399.html"/><content type="text">在线智能输入建议是目前网站上一个非常流行的功能，该功能能够根据用户的输入显示一个在线提示列表。因此，用户只要输入部分关键字，就能够从在线提示列表中选择所需要的关键字。典型的效果如图2.8所示。图2.8 在线智能输入建议效果图如果使用ASP.NET和JavaScript技术实现在线智能输入建议这一功能，是非常复杂且比较烦琐的事情。ASP.NET AJAX Control Toolkit中...</content></entry></feed>
