<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/oklemon" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/oklemon" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 17 Apr 2008 10:02:00 GMT</lastBuildDate><title>oklemon的专栏</title><link>http://blog.csdn.net/oklemon/</link><item><title>oracle 11g安装过程</title><link>http://blog.csdn.net/oklemon/archive/2008/04/17/2299720.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2299720.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2299720.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2299720</trackback:ping><description>oracle 11g安装过程&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2299720.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 17 Apr 2008 18:02:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/04/17/2299720.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/04/17/2299720.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>Windows 启动过程</title><link>http://blog.csdn.net/oklemon/archive/2008/03/27/2223150.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2223150.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2223150.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2223150</trackback:ping><description>Windows 启动过程&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2223150.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 27 Mar 2008 23:04:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/03/27/2223150.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/03/27/2223150.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>SQL SERVER 2005 样板数据库下载</title><link>http://blog.csdn.net/oklemon/archive/2008/03/25/2215977.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2215977.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2215977.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2215977</trackback:ping><description>http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx?ReleaseId=10901&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2215977.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 25 Mar 2008 18:41:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/03/25/2215977.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/03/25/2215977.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>SmtpClient使用介绍</title><link>http://blog.csdn.net/oklemon/archive/2008/02/21/2111867.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2111867.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2111867.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2111867</trackback:ping><description>SmtpClient使用介绍
System.Web和System.Web.Mail里，而2005全部引入到了System.Net和System.Net.Mail命名空间

里了。


   由于大部分属性和方法的说明在MSDN上都可以找到，也有现成的例子，所以我在这里不做过多的赘述。在这里只通过一个最简单的例子讨论一下最基本的属性和方法。
   MSDN上写到，要使用SmtpClient进行邮件操作，需要指定MailMessage的From,To,Subject,Body等基本属性.
   From：通俗点说法就是发邮件的
   To:通俗点说就是发给谁
   Subject:指邮件主题
   Body:邮件内容
SmtpClient通过邮件服务器进行邮件操作肯定要牵涉到邮件服务器的端口，服务器，验证等操作，在此我推荐我认为在2005最简单和方便的操作方式，在2005里的配置文件里新加入了一些节点
我们的SmtpClient的这些服务器属性就可以通过以下形式而指定
&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2111867.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 22 Feb 2008 02:16:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/02/21/2111867.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/02/21/2111867.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>C#网络编程概述</title><link>http://blog.csdn.net/oklemon/archive/2008/02/19/2107449.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2107449.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2107449.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2107449</trackback:ping><description>下面我重点向大家介绍C#网络编程中的一些类：Dns类、IPHostEntry类、IPEndPoint类以及Socket类，最后我会给出相应的实例以加深读者的理解。 &lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2107449.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 20 Feb 2008 02:54:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/02/19/2107449.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/02/19/2107449.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>C# 中的委托和事件</title><link>http://blog.csdn.net/oklemon/archive/2008/02/04/2083883.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2083883.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2083883.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2083883</trackback:ping><description>http://www.cnblogs.com/JimmyZhang/archive/2007/09/23/903360.html
&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2083883.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 05 Feb 2008 02:08:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/02/04/2083883.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/02/04/2083883.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>C#命名惯例和规范</title><link>http://blog.csdn.net/oklemon/archive/2008/02/02/2078542.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2078542.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2078542.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2078542</trackback:ping><description>C#命名惯例和规范&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2078542.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 02 Feb 2008 23:04:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/02/02/2078542.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/02/02/2078542.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>C#基础概念二十五问</title><link>http://blog.csdn.net/oklemon/archive/2008/02/02/2078535.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/2078535.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/2078535.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2078535</trackback:ping><description>C#基础概念二十五问 
http://www.cnblogs.com/reonlyrun/archive/2007/04/05/CSharp_25_Question.html &lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/2078535.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 02 Feb 2008 22:56:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2008/02/02/2078535.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2008/02/02/2078535.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>移动 Windows SharePoint Services 数据库</title><link>http://blog.csdn.net/oklemon/archive/2007/12/06/1921100.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/1921100.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/1921100.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1921100</trackback:ping><description>文章来源：http://www.microsoft.com/china/technet/prodtechnol/windowsserver2003/technologies/sharepoint/movewsdb.mspx&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/1921100.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 07 Dec 2007 00:11:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2007/12/06/1921100.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2007/12/06/1921100.aspx</guid><dc:creator>oklemon</dc:creator></item><item><title>在delphi中使用xml文档有两种方法</title><link>http://blog.csdn.net/oklemon/archive/2004/01/16/15578.aspx</link><wfw:comment>http://blog.csdn.net/oklemon/comments/15578.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/oklemon/comments/commentRss/15578.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=15578</trackback:ping><description>&lt;img src =&quot;http://blog.csdn.net/oklemon/aggbug/15578.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 16 Jan 2004 18:14:00 +0800</pubDate><author>oklemon</author><comments>http://blog.csdn.net/oklemon/archive/2004/01/16/15578.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/oklemon/archive/2004/01/16/15578.aspx</guid><dc:creator>oklemon</dc:creator></item></channel></rss>