<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_CsOver</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/8897/rss</id><updated>2006-07-29T01:21:45Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/8897/rss"/><entry><id>http://www.cnblogs.com/linhengboy/archive/2006/07/13/449966.html</id><title type="text">Simple Calendar</title><summary type="text">function calendar(date) { // If no parameter is passed use the current date. if(date == null) date = new Date(); day = date.getDate(); month = date.getMonth(); year = date.getFullYear(); months = new ...</summary><published>2006-07-13T08:22:00Z</published><updated>2006-07-13T08:22:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2006/07/13/449966.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2006/07/13/449966.html"/><content type="text">function calendar(date) { // If no parameter is passed use the current date. if(date == null) date = new Date(); day = date.getDate(); month = date.getMonth(); year = date.getFullYear(); months = new ...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2006/07/10/447344.html</id><title type="text">document.execCommand()的作用</title><summary type="text">&lt;input type=button value=剪切 onclick=document.execCommand('Cut')&gt;&lt;input type=button value=拷贝 onclick=document.execCommand('Copy')&gt;&lt;input type=button value=粘贴 onclick=document.execCommand...</summary><published>2006-07-10T08:55:00Z</published><updated>2006-07-10T08:55:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2006/07/10/447344.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2006/07/10/447344.html"/><content type="text">&lt;input type=button value=剪切 onclick=document.execCommand('Cut')&gt;&lt;input type=button value=拷贝 onclick=document.execCommand('Copy')&gt;&lt;input type=button value=粘贴 onclick=document.execCommand...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2006/07/08/446044.html</id><title type="text">HTML中meta作用</title><summary type="text">meta是用来在HTML文档中模拟HTTP协议的响应头报文。meta标签用于网页的&lt;head&gt;与&lt;/head&gt;中，meta标签的用处很多。meta的属性有两种：name和http-equiv。name属性主要用于描述网页，对应于content（网页内容），以便于搜索引擎机器人查找、分类（目前几乎所有的搜索引擎都使用网上机器人自动查找meta值来给网页分类）。这其中最重要的是...</summary><published>2006-07-08T09:38:00Z</published><updated>2006-07-08T09:38:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2006/07/08/446044.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2006/07/08/446044.html"/><content type="text">meta是用来在HTML文档中模拟HTTP协议的响应头报文。meta标签用于网页的&lt;head&gt;与&lt;/head&gt;中，meta标签的用处很多。meta的属性有两种：name和http-equiv。name属性主要用于描述网页，对应于content（网页内容），以便于搜索引擎机器人查找、分类（目前几乎所有的搜索引擎都使用网上机器人自动查找meta值来给网页分类）。这其中最重要的是...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2006/07/05/443470.html</id><title type="text">asp.net WebForm页面间传值方法</title><summary type="text">ASP.NET WEB FORMS 给开发者提供了极好的事件驱动开发模式。然而这种简单的应用程序开发模式却给我们带来了一些小问题，举个例子，在传统的ASP应用程序中，你能够通过POST方法很容易的把一个值或多个值从一个页面传送到另一个页面(request()/request.form()/request.querystring())，用同样的方法在ASP.NET中实现有点麻烦。在这里，通过其他方式...</summary><published>2006-07-05T08:09:00Z</published><updated>2006-07-05T08:09:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2006/07/05/443470.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2006/07/05/443470.html"/><content type="text">ASP.NET WEB FORMS 给开发者提供了极好的事件驱动开发模式。然而这种简单的应用程序开发模式却给我们带来了一些小问题，举个例子，在传统的ASP应用程序中，你能够通过POST方法很容易的把一个值或多个值从一个页面传送到另一个页面(request()/request.form()/request.querystring())，用同样的方法在ASP.NET中实现有点麻烦。在这里，通过其他方式...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2006/07/01/440425.html</id><title type="text">getElementById()与getElementsByName()区别</title><summary type="text">HTML元素的Name属性在页面中可以起那么一点ID的作用，因为在DHTML对象树中，我们可以使用document.getElementsByName来获取一个包含页面中所有指定Name元素的对象数组。 要是页面中有n(n&gt;1)个HTML元素的ID都相同了怎么办？在DHTML对象中怎么引用他们呢？如果我们使用ASPX页面，这样的情况是不容易发生的，因为aspnet进程在处理aspx页面时根本...</summary><published>2006-07-01T08:57:00Z</published><updated>2006-07-01T08:57:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2006/07/01/440425.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2006/07/01/440425.html"/><content type="text">HTML元素的Name属性在页面中可以起那么一点ID的作用，因为在DHTML对象树中，我们可以使用document.getElementsByName来获取一个包含页面中所有指定Name元素的对象数组。 要是页面中有n(n&gt;1)个HTML元素的ID都相同了怎么办？在DHTML对象中怎么引用他们呢？如果我们使用ASPX页面，这样的情况是不容易发生的，因为aspnet进程在处理aspx页面时根本...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2006/06/30/439931.html</id><title type="text">substring函数详解</title><summary type="text">本文摘自：http://www.cnitblog.com/yemoo/archive/2006/06/17/12421.html注意点：1,两个S都要小写！2,属于String对象的方法。 3,索引下标从0开始4,返回一个从start开始到end的字符串，但不包含end索引位置的字符。substring方法返回位于 String 对象中指定位置的子字符串。 strVariable.substrin...</summary><published>2006-06-30T10:32:00Z</published><updated>2006-06-30T10:32:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2006/06/30/439931.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2006/06/30/439931.html"/><content type="text">本文摘自：http://www.cnitblog.com/yemoo/archive/2006/06/17/12421.html注意点：1,两个S都要小写！2,属于String对象的方法。 3,索引下标从0开始4,返回一个从start开始到end的字符串，但不包含end索引位置的字符。substring方法返回位于 String 对象中指定位置的子字符串。 strVariable.substrin...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2005/04/10/135013.html</id><title type="text">用XmlSerializer删除xsd和xsi前缀</title><summary type="text">The easiest way to do this is to use an overload of the Serialize method. -- StringWriter sw=new StringWriter();  XmlTextWriter tw=new XmlTextWriter(sw);    XmlSeria...</summary><published>2005-04-10T02:53:00Z</published><updated>2005-04-10T02:53:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2005/04/10/135013.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2005/04/10/135013.html"/><content type="text">The easiest way to do this is to use an overload of the Serialize method. -- StringWriter sw=new StringWriter();  XmlTextWriter tw=new XmlTextWriter(sw);    XmlSeria...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2005/03/05/113337.html</id><title type="text">类与结构的区别</title><summary type="text">摘自http://www.codeproject.com a struct is implicitly sealed, a class isn't. a struct can't be abstract, a class can. a struct can't call : base() in its constructor whereas a class with no ...</summary><published>2005-03-04T18:29:00Z</published><updated>2005-03-04T18:29:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2005/03/05/113337.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2005/03/05/113337.html"/><content type="text">摘自http://www.codeproject.com a struct is implicitly sealed, a class isn't. a struct can't be abstract, a class can. a struct can't call : base() in its constructor whereas a class with no ...</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2005/02/27/110020.html</id><title type="text">这两种方法也有区别的！</title><summary type="text">在C#中，有很多人认为这两个方法"Convert.Int32(string)、Int32.Parse(string)"是同样的，因为它们都是把String type 转换成Int type。但经过在VS中测试，才知道有区别的。Convert.Int32(null)返回0，而Int32.Parse(null)则抛出个异常！还是多加实践为重。</summary><published>2005-02-27T15:16:00Z</published><updated>2005-02-27T15:16:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2005/02/27/110020.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2005/02/27/110020.html"/><content type="text">在C#中，有很多人认为这两个方法"Convert.Int32(string)、Int32.Parse(string)"是同样的，因为它们都是把String type 转换成Int type。但经过在VS中测试，才知道有区别的。Convert.Int32(null)返回0，而Int32.Parse(null)则抛出个异常！还是多加实践为重。</content></entry><entry><id>http://www.cnblogs.com/linhengboy/archive/2005/02/25/109385.html</id><title type="text">About the WebConfigurationManager class</title><summary type="text"/><published>2005-02-25T15:31:00Z</published><updated>2005-02-25T15:31:00Z</updated><author><name>XiaoLin's Blog</name><uri>http://www.cnblogs.com/linhengboy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/linhengboy/archive/2005/02/25/109385.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/linhengboy/archive/2005/02/25/109385.html"/><content type="text"/></entry></feed>
