﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>IT博客-醉意的未来-随笔分类-学习笔记</title><link>http://www.cnitblog.com/kenlen/category/1177.html</link><description>路漫漫其修远兮，吾将上下而求索！&lt;br&gt;
&lt;b&gt;For things to change, first I must change!&lt;/b&gt;</description><language>zh-cn</language><lastBuildDate>Wed, 28 Sep 2011 06:57:17 GMT</lastBuildDate><pubDate>Wed, 28 Sep 2011 06:57:17 GMT</pubDate><ttl>60</ttl><item><title>An Overview of Visual Basic 2005</title><link>http://www.cnitblog.com/kenlen/archive/2005/11/17/4602.html</link><dc:creator>Kenlen</dc:creator><author>Kenlen</author><pubDate>Thu, 17 Nov 2005 05:44:00 GMT</pubDate><guid>http://www.cnitblog.com/kenlen/archive/2005/11/17/4602.html</guid><wfw:comment>http://www.cnitblog.com/kenlen/comments/4602.html</wfw:comment><comments>http://www.cnitblog.com/kenlen/archive/2005/11/17/4602.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cnitblog.com/kenlen/comments/commentRss/4602.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/kenlen/services/trackbacks/4602.html</trackback:ping><description><![CDATA[<P>关于.net2.0的资料比较少，我翻译了一篇msdn里面的ken getz写的 vb.net2005的文章。第一次翻译，这样的文章，很多技术用词看得懂就是用中文表达不出来这个只是翻译了一个小片断。如果有错误请大家指出。接下来几天把全盘翻译一遍，边学英语边学.net。英语很重要。热切感觉到。。。<BR>原文地址<A href="http://msdn.microsoft.com/vbasic/default.aspx?pull=/library/en-us/dnvs05/html/vb2005_overview.asp">http://msdn.microsoft.com/vbasic/default.aspx?pull=/library/en-us/dnvs05/html/vb2005_overview.asp</A><BR><BR>作者：Ken Getz <BR>翻译：Kenlen <BR>介绍 <BR>Microsoft visual studio 2005已经为vb开发者增加了全新的语言构造，全新的编辑器面貌，令人兴奋地大幅度地提高生产力和除错的体验提高生产力 Visual Studio 2005和Visual Basic 2005添加了很多让你的开发更有生产力的特性和工具下面的文章只是一小部分 </P>
<P>my 命名空间想象一下能够迅速地在一个巨大的.net类库中寻找到你需要的函数。想象一下用一次访问就可以代替写下许多行代码的才能完成的任务，想象一下比你以前用的vb版本提升了更多的生产力。这些目标或者更多，你可以在为vb.net 2005添加的my 命名空间寻找到答案。 </P>
<P>好像一个在你的windows系统的桌面上添加一个程序的快捷方式来更快地找到你需要的程序或者文件，my的类命名空间提供一个捷径去象普通地使用.net类库的功能，另外，my命名空间添加了那些难找到，用起来很困难，或者是一个无托管的API的调用 </P>
<P>MY命名空间包括了下面的类，每一个类里面都包括非常有用的类成员 <BR>1.Application 2.Computer 3.Forms 4.Resources 5.Settings 6.Users </P>
<P>举一个很简单的例子，用Visual Basic 2005 写一个播放音频文件的代码，比调用DriectX或者是Win32 API更简单的多，你可以这么简单地写一句 <BR>My.Computer.Audio.Play("c:\beep.wav") </P>
<P>如果要播放系统的声音，你可以这样写：My.Computer.Audio.PlaySystemSound(SystemSounds.Asterisk)另外，my的命名空间里面能够用不同的代码写法代替其他的函数，举一个例子来示范一下如何用一个简单的代码来实现Ping一台机子的功能呢？ </P>
<P>If My.Computer.Network.IsAvailable Then <BR>&nbsp;&nbsp;&nbsp; If My.Computer.Network.Ping("<A href="http://www.microsoft.com">http://www.microsoft.com</A>") Then <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox("Microsoft's site is available.") <BR>&nbsp;&nbsp;&nbsp; End If <BR>End If </P>
<P>操控文件系统重来就没有这么简单过My.Computer.FileSystem 提供了一个简单的，显露的，极易使用的路去访问操作系统里面的文件，文件系统的运作方式比如，复制，删除，移动和重命名文件或者是文件夹，这些的核心代码都在 My.Computer.FileSystem 举一个例子，程序员经常需要一个文件，文件夹或者是磁盘的属性（比如文件的大小，编码方式等等），用 My.Computer.FileSystem,一般引用文件，文件夹或者是磁盘属性将会更加简单，举一个例子，显示在你系统里面的每一个磁盘空间，你可以这么写 </P>
<P>For Each drv As DriveInfo In My.Computer.FileSystem.Drives <BR>&nbsp;&nbsp;&nbsp; If drv.IsReady Then <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine(String.Format( _ <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "{0}:\ {1:N0}", drv.Name, drv.TotalSize)) <BR>&nbsp;&nbsp;&nbsp; End If <BR>Next </P>
<P><BR>My.user类里面提供了当前的用户信息，包括Name和IsInRole属性，你可以是用这样的代码去显示用户的信息和是否用户是管理员 </P>
<P>MsgBox(My.User.Identity.Name &amp; ":" &amp; _ <BR>&nbsp;&nbsp;&nbsp; My.User.IsInRole("Administrators")) </P>
<P>如果你要测定当前用户运行的数据文件夹，你可以使用简单的代码去实现<BR>MsgBox( _<BR>My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData)</P>
<P>My的命名空间也增加了很多vb6的开发平台到.net开发平台的功能，举个例子，Visual Basic的开发人员以前访问用name的类访问forms，这个是依靠runtime引擎去维持一系列的可以用到的form类。用新的my.forms空间，开发人员可以写一个开放和相互作用的实例form类的代码去创建解决方案，就象这个<BR>My.Forms.HelpForm.Show() <BR><BR>另外，MY的命名空间包括了许多很强大的类，包括Forms, WebServices, Resources和Setting ,My.WebServices包括了允许开发人员非常简单地调用Web Service的模块提供非常优秀的智能感知和强类型，让调用越来越简单高校，例如，想像一下一个已经在项目中被声明为Numbers的Web Service，调用WebSerivceNumToStr模块,可以非常简单的写成这样<BR>MsgBox(My.WebServices.Numbers.NumToStr(123.45))<BR>总结：MY的命名空间已经非常高效和简洁地为VB的开发人员更好的完成目标<BR><BR>
<HR>
<BR>智能感知和代码片断<BR>Visual Basic 2005比以前所有版本的vb提供更加强大更加智能的错误代码检测，举一个例子，企图使用一个已经声明的值变量，然而这个值变量已经在以前分配过了。你就会的到下面的错误提示<BR><IMG height=98 alt=vbnet2005_preview-fig1.gif src="http://www.cnitblog.com/images/cnitblog_com/kenlen/vbnet2005_preview-fig1.gif" width=470 border=0><BR>在设计的时候Visual Basic 2005能够捕获共有的错误<BR>新的代码<BR><BR></P><img src ="http://www.cnitblog.com/kenlen/aggbug/4602.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/kenlen/" target="_blank">Kenlen</a> 2005-11-17 13:44 <a href="http://www.cnitblog.com/kenlen/archive/2005/11/17/4602.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>今天小组team building</title><link>http://www.cnitblog.com/kenlen/archive/2005/11/13/4426.html</link><dc:creator>Kenlen</dc:creator><author>Kenlen</author><pubDate>Sun, 13 Nov 2005 12:51:00 GMT</pubDate><guid>http://www.cnitblog.com/kenlen/archive/2005/11/13/4426.html</guid><wfw:comment>http://www.cnitblog.com/kenlen/comments/4426.html</wfw:comment><comments>http://www.cnitblog.com/kenlen/archive/2005/11/13/4426.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/kenlen/comments/commentRss/4426.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/kenlen/services/trackbacks/4426.html</trackback:ping><description><![CDATA[<P>&nbsp; 今天小组team building，本来是打算去爬山的。可惜的是时间可能不是很够，我去的话都已经10点多了。呵呵，结果玩了几盘杀手游戏就去腐败。腐败完就去海边，玩了几个team builiding的游戏，比如什么抬人了，后仰到到其他人的手中，感觉大家都挺开心的，小组好像都没有这样玩过游戏，都是腐败腐败。。不错以后要坚持这个活动，今天小组里面的人就缺少了一个，怪可惜的，本来都可以全到的。。还有游戏的时候有点准备不是很充分。很多道具都没有展开，具体什么游戏都是临时想的，所以下次的时候应该吸取这次教训。呵呵，好累。睡觉去了</P><img src ="http://www.cnitblog.com/kenlen/aggbug/4426.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/kenlen/" target="_blank">Kenlen</a> 2005-11-13 20:51 <a href="http://www.cnitblog.com/kenlen/archive/2005/11/13/4426.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>.TextBloG四张视图</title><link>http://www.cnitblog.com/kenlen/archive/2005/11/03/3841.html</link><dc:creator>Kenlen</dc:creator><author>Kenlen</author><pubDate>Thu, 03 Nov 2005 05:27:00 GMT</pubDate><guid>http://www.cnitblog.com/kenlen/archive/2005/11/03/3841.html</guid><wfw:comment>http://www.cnitblog.com/kenlen/comments/3841.html</wfw:comment><comments>http://www.cnitblog.com/kenlen/archive/2005/11/03/3841.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/kenlen/comments/commentRss/3841.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/kenlen/services/trackbacks/3841.html</trackback:ping><description><![CDATA[<DIV class=bodyPost>
<P>blog_Content_View：</P><PRE style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: black 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; BORDER-LEFT: black 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: black 1px solid; BACKGROUND-COLOR: #ededed"><DIV><SPAN style="COLOR: #0000ff">CREATE</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">VIEW</SPAN><SPAN style="COLOR: #000000"> dbo.blog_Content_View
</SPAN><SPAN style="COLOR: #0000ff">AS</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">SELECT</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">TOP</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="FONT-WEIGHT: bold; COLOR: #800000">100</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #808080">*</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">FROM</SPAN><SPAN style="COLOR: #000000"> dbo.blog_Content
</SPAN><SPAN style="COLOR: #0000ff">ORDER</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">BY</SPAN><SPAN style="COLOR: #000000"> ID </SPAN><SPAN style="COLOR: #0000ff">DESC</SPAN></DIV></PRE>
<P>这个视图是提交一个前100的写的最多的blog作者</P>
<P>Log_View</P><PRE style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: black 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; BORDER-LEFT: black 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: black 1px solid; BACKGROUND-COLOR: #ededed"><DIV><SPAN style="COLOR: #0000ff">CREATE</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">VIEW</SPAN><SPAN style="COLOR: #000000"> dbo.Log_View
</SPAN><SPAN style="COLOR: #0000ff">AS</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">SELECT</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">TOP</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="FONT-WEIGHT: bold; COLOR: #800000">100</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">PERCENT</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #808080">*</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">FROM</SPAN><SPAN style="COLOR: #000000"> dbo.blog_Log
</SPAN><SPAN style="COLOR: #0000ff">ORDER</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">BY</SPAN><SPAN style="COLOR: #000000"> LogID </SPAN><SPAN style="COLOR: #0000ff">DESC</SPAN></DIV></PRE>
<P>这个视图的作用就是提交访问量最大的前100名blog</P>
<P>SiteCatalog</P><PRE style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: black 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; BORDER-LEFT: black 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: black 1px solid; BACKGROUND-COLOR: #ededed"><DIV><SPAN style="COLOR: #0000ff">CREATE</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">VIEW</SPAN><SPAN style="COLOR: #000000"> dbo.SiteCatalog
</SPAN><SPAN style="COLOR: #0000ff">AS</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">SELECT</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #808080">*</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">FROM</SPAN><SPAN style="COLOR: #000000"> dbo.blog_LinkCategories
</SPAN><SPAN style="COLOR: #0000ff">WHERE</SPAN><SPAN style="COLOR: #000000"> (CategoryType </SPAN><SPAN style="COLOR: #808080">=</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="FONT-WEIGHT: bold; COLOR: #800000">6</SPAN><SPAN style="COLOR: #000000">)</SPAN></DIV></PRE>
<P><FONT style="BACKGROUND-COLOR: #ffffff">这个视图的作用是显示bloger作者分类</FONT></P>
<P>VIEW_ScheduleEvents</P><PRE style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: black 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; BORDER-LEFT: black 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: black 1px solid; BACKGROUND-COLOR: #ededed"><DIV><SPAN style="COLOR: #0000ff">CREATE</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">VIEW</SPAN><SPAN style="COLOR: #000000"> dbo.VIEW_ScheduleEvents
</SPAN><SPAN style="COLOR: #0000ff">AS</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">SELECT</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">TOP</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="FONT-WEIGHT: bold; COLOR: #800000">100</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">PERCENT</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #808080">*</SPAN><SPAN style="COLOR: #000000">
</SPAN><SPAN style="COLOR: #0000ff">FROM</SPAN><SPAN style="COLOR: #000000"> dbo.blog_ScheduledEvents
</SPAN><SPAN style="COLOR: #0000ff">ORDER</SPAN><SPAN style="COLOR: #000000"> </SPAN><SPAN style="COLOR: #0000ff">BY</SPAN><SPAN style="COLOR: #000000"> ScheduleID </SPAN><SPAN style="COLOR: #0000ff">DESC</SPAN></DIV></PRE>这个视图作用就是暂时不懂 </DIV><img src ="http://www.cnitblog.com/kenlen/aggbug/3841.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/kenlen/" target="_blank">Kenlen</a> 2005-11-03 13:27 <a href="http://www.cnitblog.com/kenlen/archive/2005/11/03/3841.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>.TextBloG里面引用的第三方组件</title><link>http://www.cnitblog.com/kenlen/archive/2005/11/03/3840.html</link><dc:creator>Kenlen</dc:creator><author>Kenlen</author><pubDate>Thu, 03 Nov 2005 05:26:00 GMT</pubDate><guid>http://www.cnitblog.com/kenlen/archive/2005/11/03/3840.html</guid><wfw:comment>http://www.cnitblog.com/kenlen/comments/3840.html</wfw:comment><comments>http://www.cnitblog.com/kenlen/archive/2005/11/03/3840.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/kenlen/comments/commentRss/3840.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/kenlen/services/trackbacks/3840.html</trackback:ping><description><![CDATA[<FONT style="BACKGROUND-COLOR: #efefef" color=#000000>TextBblog里面引用了很多优秀的开源工具，比如他的搜索是引用了著名的lucene.net，这个东西作为搜索的基类，lucene.net在JAVA界里面的搜索是非常有名的开源，freetextbox这个就不用说了，现在已经成为了.net输入的标准。SKMRSS，这个组件是开发用于RSS数据流的输出和输入</FONT>
<P><FONT style="BACKGROUND-COLOR: #efefef" color=#000000>在网上找到了篇明细表</FONT></P>
<P><FONT style="BACKGROUND-COLOR: #efefef"><FONT color=#000000>.text includes these components and contrls</FONT></P>
<P><FONT color=#000000>MetaBuilders.WebControls.DefaultButtons.dll<BR>MetaBuilders.WebControls.ExpandingPanel.dll<BR>MetaBuilders.&nbsp;&nbsp; .....<BR>you can find these contrls on this site<BR></FONT><A href="http://www.metabuilders.com/Tools/DefaultButtons.aspx"><U><FONT color=#000000>http://www.metabuilders.com/Tools/DefaultButtons.aspx</FONT></U></A></P>
<P><FONT color=#000000>ActiproSoftware.CodeHighlighter.dll&nbsp;&nbsp; <BR>ActiproSoftware. ....<BR>you can find these contrls on this site<BR></FONT><A href="http://www.actiprosoftware.com/Products/DotNet/CodeHighlighter/Default.aspx"><U><FONT color=#000000>http://www.actiprosoftware.com/Products/DotNet/CodeHighlighter/Default.aspx</FONT></U></A></P>
<P><FONT color=#000000>CookComputing.XmlRpc.dll<BR>you can find this component on this site,current version is 0.9. dottext useing 0.81<BR></FONT><A href="http://www.xml-rpc.net/"><U><FONT color=#000000>http://www.xml-rpc.net/</FONT></U></A></P>
<P><FONT color=#000000>freetextbox.dll<BR>you can find this component on this site<BR></FONT><A href="http://www.freetextbox.com/"><U><FONT color=#000000>http://www.freetextbox.com/</FONT></U></A></P>
<P><FONT color=#000000>Lucene.Net.dll<BR>you can find this component on this site<BR></FONT><A href="http://sourceforge.net/projects/lucenedotnet"><U><FONT color=#000000>http://sourceforge.net/projects/lucenedotnet</FONT></U></A></P>
<P><FONT color=#000000>SgmlReaderDll.dll<BR>you can find component on this site<BR></FONT><A href="http://cvs.sourceforge.net/viewcvs.py/rssbandit/12061/RssComponents/SgmlReaderDll.dll?rev=1.1.1.1&amp;view=log"><U><FONT color=#000000>http://cvs.sourceforge.net/viewcvs.py/rssbandit/12061/RssComponents/SgmlReaderDll.dll?rev=1.1.1.1&amp;view=log</FONT></U></A></P>
<P><FONT color=#000000>skmRss.dll<BR>you can find this component on this site<BR></FONT><A href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=6a116a0f-66c4-4f91-9e13-a0d00960b9ad"><U><FONT color=#000000>http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=6a116a0f-66c4-4f91-9e13-a0d00960b9ad</FONT></U></A></P>
<P><FONT color=#000000>P.S.</FONT></P>
<P><FONT color=#000000>please wait for looking forward to other opensource project</FONT></P></FONT><img src ="http://www.cnitblog.com/kenlen/aggbug/3840.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/kenlen/" target="_blank">Kenlen</a> 2005-11-03 13:26 <a href="http://www.cnitblog.com/kenlen/archive/2005/11/03/3840.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>.TextBloG表的作用</title><link>http://www.cnitblog.com/kenlen/archive/2005/11/03/3839.html</link><dc:creator>Kenlen</dc:creator><author>Kenlen</author><pubDate>Thu, 03 Nov 2005 05:24:00 GMT</pubDate><guid>http://www.cnitblog.com/kenlen/archive/2005/11/03/3839.html</guid><wfw:comment>http://www.cnitblog.com/kenlen/comments/3839.html</wfw:comment><comments>http://www.cnitblog.com/kenlen/archive/2005/11/03/3839.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/kenlen/comments/commentRss/3839.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/kenlen/services/trackbacks/3839.html</trackback:ping><description><![CDATA[<FONT style="BACKGROUND-COLOR: #ff1493">
<P align=left><FONT style="BACKGROUND-COLOR: #f5f5dc">初步学习.textblog可能有误，希望大家指出</FONT><BR>
<HR>
<BR>Blog_userInRoles</FONT>表 权限表&nbsp;&nbsp;&nbsp; <FONT style="BACKGROUND-COLOR: #ff1493">blog_Comment_Audit</FONT>：评论审查的作用，这个表就是临时存放评论的。如果你的blog要求评论通过审核，都写入这个表 </P>
<P></P>
<P><FONT style="BACKGROUND-COLOR: #ff1493">Blog_Config</FONT> :Blogger的配置表 <FONT style="BACKGROUND-COLOR: #ff1493">blog_Content</FONT>：这里存放着全部的blog文章和feedback，有点想不通，为什么不把feedback独立建立一个表呢？需要和blog的文章全部存放在一起</P>
<P><FONT style="BACKGROUND-COLOR: #ff1493">blog_Content_Audit</FONT>：留言表。给blog作者留言&nbsp;&nbsp; <FONT style="BACKGROUND-COLOR: #ff1493">blog_EntryRate</FONT>：blog作者登陆的统计。这个表作用暂时不是很懂，按照字面解释应该是这个意思</P>
<P><FONT style="BACKGROUND-COLOR: #ff1493">blog_EntryViewCount</FONT>：统计blog文章的web查看次数和rss聚合查看文章的次数&nbsp;&nbsp;<FONT style="BACKGROUND-COLOR: #ff1493"> blog_Images</FONT>：blog里面存放的相册的表</P>
<P><FONT style="BACKGROUND-COLOR: #ff1493">blog_KeyWords</FONT>：把字体改成keyword也就是 改成链接url的表。 <FONT style="BACKGROUND-COLOR: #ff1493">blog_LinkCategories</FONT>：链接的类别包括文章和RSS,友情链接 <FONT style="BACKGROUND-COLOR: #ff1493">blog_Links</FONT>：这个就是链接的具体URL</P>
<P><FONT style="BACKGROUND-COLOR: #ff1493" color=#000000>blog_Log：</FONT>记录登陆的log <FONT style="BACKGROUND-COLOR: #ff1493">blog_MailNotify</FONT>:记录blogger的mail地址，里面有好几个关键字段&nbsp;&nbsp; <FONT style="BACKGROUND-COLOR: #ff1493">blog_Profile</FONT>：记录blogger的所在地，所在地可以理解为城市或者改成学院，这个表没有什么多大作用</P>
<P><FONT style="BACKGROUND-COLOR: #ff1493">blog_Referrals</FONT>：推荐的blogger。这个表我个人认为是用来排名统计的在首页里面 <FONT style="BACKGROUND-COLOR: #ff1493">blog_ScheduledEvents</FONT>：这个表记录服务器的状态<BR>
<HR>
</P><img src ="http://www.cnitblog.com/kenlen/aggbug/3839.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/kenlen/" target="_blank">Kenlen</a> 2005-11-03 13:24 <a href="http://www.cnitblog.com/kenlen/archive/2005/11/03/3839.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>