<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_宁可辛苦一阵子,不要辛苦一辈子</title><subtitle type="text">VocanoLee学习手札</subtitle><id>http://feed.cnblogs.com/blog/u/43993/rss</id><updated>2010-02-09T19:14:37Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/43993/rss"/><entry><id>http://www.cnblogs.com/VocanoLee/archive/2010/02/10/1666912.html</id><title type="text">单网卡快速搭建VPN【原创】</title><summary type="text">本以为搭建VPN很麻烦，而且繁琐，亲身经历了一下后感觉不是很难！简单说下过程1：关闭防火墙2：启动Remote Procedure Call (RPC)服务3：（管理工具中）配置路由和远程访问 选择自定义配置，后选择VPN访问4：安装微软网络客户端（连接属性中）5：启动Telephony 服务6：启动Remote Access Connection Manager服务7：启动Routing and...</summary><published>2010-02-09T19:15:00Z</published><updated>2010-02-09T19:15:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2010/02/10/1666912.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2010/02/10/1666912.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2009/05/16/1458106.html</id><title type="text">c#ftp操作[转]</title><summary type="text">.net,C#,Ftp各种操作,上传,下载,删除文件,创建目录,删除目录,获得文件列表等(转) using System;using System.Collections.Generic;using System.Text;using System.Net;using System.IO;using System.Windows.Forms;namespace ConvertData{ class...</summary><published>2009-05-15T18:51:00Z</published><updated>2009-05-15T18:51:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/16/1458106.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/16/1458106.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2009/05/15/1457977.html</id><title type="text">关于.Net 调试 运行的时候,页面无法显示的解决方法</title><summary type="text">关于.Net调试运行的时候,页面无法显示的解决方法vs2008 。很普通的就建了个网站，自动生成了 Default.aspx 页面。我运行该页面就出现了如下图所示：（说是找不到服务器） ，非常郁闷现在我把解决方法说下，希望有朋友和我一样的就不用走弯路了~~ 你可以看一下你装的杀软是什么，一般就是杀软的问题。我用的杀软是NOD32的。所以我是这么解决的。用ie调试的时候发现：IE地址栏里面显示端口号...</summary><published>2009-05-15T14:00:00Z</published><updated>2009-05-15T14:00:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/15/1457977.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/15/1457977.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2009/05/06/1450587.html</id><title type="text">C#扩展名关联【转】</title><summary type="text">string keyName; string keyValue; keyName = "MyApp"; keyValue = "My Application"; RegistryKey key; key = Registry.ClassesRoot.CreateSubKey(keyName); key.SetValue("", keyValue); key = key.CreateSubKey("...</summary><published>2009-05-06T04:59:00Z</published><updated>2009-05-06T04:59:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/06/1450587.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/06/1450587.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2009/05/06/1450586.html</id><title type="text">转C#根据扩展名显示相应的图标</title><summary type="text">1using System;2using System.Collections.Generic;3using System.ComponentModel;4using System.Data;5using System.Drawing;6using System.Text;7using System.Windows.Forms;8using System.Runtime.InteropServic...</summary><published>2009-05-06T04:58:00Z</published><updated>2009-05-06T04:58:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/06/1450586.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2009/05/06/1450586.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2009/04/08/1431332.html</id><title type="text">c#实现文件上传-忽略Byte编码格式</title><summary type="text">///&amp;lt;summary&amp;gt;///ftp的上传功能///&amp;lt;/summary&amp;gt;///&amp;lt;paramname="ftpServerIP"&amp;gt;&amp;lt;/param&amp;gt;///&amp;lt;paramname="filename"&amp;gt;&amp;lt;/param&amp;gt;///&amp;lt;paramname="ftpUserID"&amp;gt;&amp;lt;/param&amp;gt;///&amp;lt;paramn...</summary><published>2009-04-07T20:39:00Z</published><updated>2009-04-07T20:39:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2009/04/08/1431332.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2009/04/08/1431332.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2009/03/20/1417285.html</id><title type="text">Flex Builder 3.0 For Eclipse 3.3 安装方法</title><summary type="text">Flex Builder 3.0 For Eclipse 3.3 安装方法转自http://blog.csdn.net/surpaimb/archive/2008/04/08/2264171.aspx[quote]这两天准备学习Flex,于是下载了Flex Builder 3.0 For Eclipse plugin准备安装.但是安装后启动Eclipse,找了半天也没找到Flex.而且Flex B...</summary><published>2009-03-19T18:13:00Z</published><updated>2009-03-19T18:13:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2009/03/20/1417285.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2009/03/20/1417285.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2008/11/24/1339748.html</id><title type="text">透过IL看C# (外一篇) 警惕常量陷阱</title><summary type="text">透过IL看C# (外一篇)警惕常量陷阱原文地址：http://www.cnblogs.com/AndersLiu/archive/2008/11/23/csharp-via-il-constant-a.html原创：Anders Liu摘要：常量的含义本是&amp;ldquo;永远不会变的量&amp;rdquo;，但是如果作为类库开发人员，把常量用作&amp;ldquo;可以由我变，但不能由你变&amp;rdquo;的量，那就可...</summary><published>2008-11-24T03:04:00Z</published><updated>2008-11-24T03:04:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2008/11/24/1339748.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2008/11/24/1339748.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2008/10/30/1323018.html</id><title type="text">ref和out的小结</title><summary type="text">方法参数上的 out 方法参数关键字使方法引用传递到方法的同一个变量。当控制传递回调用方法时，在方法中对参数所做的任何更改都将反映在该变量中。 当希望方法返回多个值时，声明 out 方法非常有用。使用 out 参数的方法仍然可以返回一个值。一个方法可以有一个以上的 out 参数。 若要使用 out 参数，必须将参数作为 out 参数显式传递到方法。out 参数的值不会传递到 out 参数。 不必初...</summary><published>2008-10-30T06:41:00Z</published><updated>2008-10-30T06:41:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2008/10/30/1323018.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2008/10/30/1323018.html"/></entry><entry><id>http://www.cnblogs.com/VocanoLee/archive/2008/10/10/1307964.html</id><title type="text">使用 XSL 样式表无法查看 XML 输入。请更正错误然后单击 刷新按钮，或以后重试。 </title><summary type="text">无法显示 XML 页。 使用 XSL 样式表无法查看 XML 输入。请更正错误然后单击 刷新按钮，或以后重试。 --------------------------------------------------------------------------------名称以无效字符开头。处理资源 'http://localhost/Asp.net/Default.aspx' 时出错。第 1 行...</summary><published>2008-10-10T05:28:00Z</published><updated>2008-10-10T05:28:00Z</updated><author><name>VocanoLee</name><uri>http://www.cnblogs.com/VocanoLee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/VocanoLee/archive/2008/10/10/1307964.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/VocanoLee/archive/2008/10/10/1307964.html"/></entry></feed>
