<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>维克苗综合站</title>
	<atom:link href="http://www.vicmiao.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vicmiao.com</link>
	<description>知识使人健康</description>
	<pubDate>Mon, 15 Jun 2009 13:58:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WebBrowser 在本窗口打开链接</title>
		<link>http://www.vicmiao.com/html/y2009/3811.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3811.html#comments</comments>
		<pubDate>Mon, 15 Jun 2009 13:50:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<category><![CDATA[WebBrowser1]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3811.html</guid>
		<description><![CDATA[&#8216;本代码测试可用
Dim WithEvents Web_V1 As SHDocVwCtl.WebBrowser_V1
Private Sub Form_Load()Set Web_V1 = WebBrowser1.Object
WebBrowser1.Navigate &#8220;http://www.vicmiao.com&#8220;End Sub
Private Sub Web_V1_NewWindow(ByVal URL As String, ByVal Flags As Long, ByVal TargetFrameName As String, PostData As Variant, ByVal Headers As String, Processed As Boolean)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Processed = True&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; WebBrowser1.Navigate URLEnd Sub

相关日志

小马王原声专辑下载

]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3811.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>用VB控制ADSL连接和断开</title>
		<link>http://www.vicmiao.com/html/y2009/3810.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3810.html#comments</comments>
		<pubDate>Sat, 09 May 2009 08:42:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[酒店|资讯管理营销]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3810.html</guid>
		<description><![CDATA[新建一个模块,贴入以下代码: Option Explicit Public hRasConn As Long &#8216;¶¨ÒåÒ»¸öÖ¸ÏòRASµ÷ÓÃµÄÈ«¾Ö¾ä±ú Public Const APINULL = 0&#38; Public Const UNLEN = 256 Public Const DNLEN = 15 Public Const PWLEN = 256 Public Const RAS95_MaxPhoneNumber = 128 Public Const RAS95_MaxEntryName = 256 Public Const RAS95_MaxCallbackNumber = RAS95_MaxPhoneNumber Public Type RASDIALPARAMS95 



dwSize As Long szEntryName(RAS95_MaxEntryName) As Byte szPhoneNumber(RAS95_MaxPhoneNumber) As Byte [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3810.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>用xmlhttp編寫web採集程序</title>
		<link>http://www.vicmiao.com/html/y2009/3808.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3808.html#comments</comments>
		<pubDate>Thu, 07 May 2009 17:22:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<category><![CDATA[xmlhttp]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3808.html</guid>
		<description><![CDATA[清晰帶語法著色的版本：http://gwx.showus.net/blog/article.asp?id=229原創很辛苦，轉載請註明原文鏈接：http://gwx.showus.net/blog/article.asp?id=229web採集程序？網頁抓取程序？小倫程序？不管怎麼叫，這種程序應用倒是蠻廣的。本文不討論這種使用這種程序引起的版權或道德問題，只談這種程序在ASP+VBScript環境下的實現  預備知識：除了一般的ASP+VBScript的知識外，你還需要瞭解xmlhttp對像和正則表達式對象。xmlhttp對象是時下風頭正勁的Ajax的主角；而學好了正則表達式，你再也不用為處理複雜的字符串犯愁。在編寫和調試正則表達式時，RegEx 這個小工具非常有用。

目錄抓取一個遠程網頁並保存到本地 改進：處理亂碼 同時下載遠程網頁的圖片（和其它文件） 改進：探測真實URL 改進：避免重複下載 實戰舉例（以****為例） 分析列表頁 內容頁的技巧 分析內容頁中的上一頁，下一頁 高級主題：UTF-8和GB2312的轉換 更多高級主題：登陸後抓取，客戶端偽造 己有的採集程序 原文鏈接：http://gwx.showus.net/blog/article.asp?id=229１.抓取一個遠程網頁並保存到本地&#8216;用於調試的過程，後面會多次調用檢查中間結果Dim inDebug:inDebug=True Sub D(Str)&#160;&#160;&#160; If inDebug = False Then Exit Sub&#160;&#160;&#160; Response.Write(&#8221;&#60;div style=&#8217;color:#003399; border: solid 1px #003399; background: #EEF7FF; margin: 1px; font-size: 12px; padding: 4px;&#8217;&#62;&#8221;)&#160;&#160;&#160; Response.Write(Str &#38;&#8221;&#60;/div&#62;&#8221;)&#160;&#160;&#160; Response.Flush()End Sub&#8216;過程： Save2File&#8216;功能： 把文本或字節流保存為文件&#8216;參數： sContent&#160;&#160;&#160; 要保存的內容&#8216;&#160;&#160;&#160;&#160;&#160;&#160; sFile&#160;&#160;&#160;&#160;&#160;&#160; 保存到文件，形如&#8221;files/abc.htm&#8221;&#8216;&#160;&#160;&#160;&#160;&#160;&#160; bText&#160;&#160;&#160;&#160;&#160;&#160; 是否是文本&#8216;&#160;&#160;&#160;&#160;&#160;&#160; bOverWrite&#160; 是否覆蓋己存在文件Sub Save2File(sContent,sFile,bText,bOverWrite)&#160;&#160;&#160; [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3808.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>XMLHTTP LOGIN TAOBAO</title>
		<link>http://www.vicmiao.com/html/y2009/3809.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3809.html#comments</comments>
		<pubDate>Thu, 07 May 2009 17:20:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[酒店|资讯管理营销]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3809.html</guid>
		<description><![CDATA[XMLHTTP:Set objXMLHTTP = CreateObject(&#8221;MSXML2.XMLHTTP&#8221;)&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.open &#8220;POST&#8221;, &#8220;http://member1.taobao.com/member/login.jhtml&#8221;, False&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.setRequestHeader &#8220;Accept&#8221;, &#8220;image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/QVOD, application/msword, */*&#8221;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.setRequestHeader &#8220;Content-Type&#8221;, &#8220;application/x-www-form-urlencoded&#8221;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.setRequestHeader &#8220;Accept-Encoding&#8221;, &#8220;gzip, deflate&#8221;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.setRequestHeader &#8220;User-Agent&#8221;, &#8220;mozilla/4.0 (compatible; msie 8.0; windows nt 5.1; trident/4.0; mozilla/4.0 (compatible; msie 6.0; windows nt 5.1; sv1) ; .net clr 2.0.50727)&#8221;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.setRequestHeader &#8220;Host&#8221;, &#8220;member1.taobao.com&#8221;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objXMLHTTP.setRequestHeader &#8220;Cache -Control&#8221;, &#8220;no - [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3809.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>ShellExecute USE IN VISUAL BASIC</title>
		<link>http://www.vicmiao.com/html/y2009/3807.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3807.html#comments</comments>
		<pubDate>Wed, 29 Apr 2009 16:11:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3807.html</guid>
		<description><![CDATA[【函数】&#160;&#160; &#160; ShellExecute&#160;&#160; &#160; 【操作系统】&#160;&#160; &#160; Win9X:Yes&#160;&#160; &#160; WinNT:Yes&#160;&#160; &#160; 【声明】&#160;&#160; &#160; ShellExecute&#160;&#160; Lib&#160;&#160; &#8220;shell32.dll&#8221;&#160;&#160; Alias&#160;&#160; &#8220;ShellExecuteA&#8221;&#160;&#160; (ByVal&#160;&#160; hwnd&#160;&#160; As&#160;&#160; Long,&#160;&#160; ByVal&#160;&#160; lpOperation&#160;&#160; As&#160;&#160; String,&#160;&#160; ByVal&#160;&#160; lpFile&#160;&#160; As&#160;&#160; String,&#160;&#160; ByVal&#160;&#160; lpParameters&#160;&#160; As&#160;&#160; String,&#160;&#160; ByVal&#160;&#160; lpDirectory&#160;&#160; As&#160;&#160; String,&#160;&#160; ByVal&#160;&#160; nShowCmd&#160;&#160; As&#160;&#160; Long)&#160;&#160; As&#160;&#160; Long&#160;&#160; 

&#160; 【说明】&#160;&#160; &#160;&#160;&#160;&#160;&#160; &#38;nbsp;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; 查找与指定文件关联在一起的程序的文件名&#160;&#160;&#160;&#160; &#160; 【返回值】&#160;&#160; &#160;&#160;&#160;&#160;&#160; Long，非零表示成功，零表示失败。会设置GetLastError&#160;&#160;&#160;&#160; &#160; 【其它】&#160;&#160; [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3807.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Get LocalHost And Remote  MAC Address</title>
		<link>http://www.vicmiao.com/html/y2009/3806.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3806.html#comments</comments>
		<pubDate>Tue, 28 Apr 2009 18:15:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3806.html</guid>
		<description><![CDATA[&#160;
&#8216;参考网络代码完成, 获取机器的MAC 网卡地址
&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8216;GetMyMAC 获得本机器网卡 MAC地址 若无IP 返回空字符&#8216; Print GetMyMAC
&#8216;GetRemoteMACAddress IP,strval 获取对应机器的网卡 MAC地址&#8216;dim i&#8216;GetRemoteMACAddress &#8220;192.168.0.1&#8243;,i&#8216;Print i&#8216;&#8216;GetIPAddress&#160; 返回给定机器名的Ip地址，机器名为空时返回本机Ip地址&#8216; GetIPAddress 机器名



&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;-Option Explicit
Private Declare Function gethostname _&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Lib &#8220;wsock32.dll&#8221; (ByVal szHost As String, _&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ByVal dwHostLen As Long) As LongPrivate Declare Function gethostbyname _&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Lib &#8220;wsock32.dll&#8221; (ByVal szHost As String) As LongPrivate Declare Function WSAStartup _&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Lib &#8220;wsock32.dll&#8221; (ByVal [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3806.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>VB GET LOCALHOST IP</title>
		<link>http://www.vicmiao.com/html/y2009/3805.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3805.html#comments</comments>
		<pubDate>Tue, 28 Apr 2009 17:59:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3805.html</guid>
		<description><![CDATA[Public Declare Sub CopyMemory Lib &#8220;kernel32&#8243; Alias &#8220;RtlMoveMemory&#8221; (Destination As Any, Source As Any, ByVal Length As Long)&#160;&#160; Public Declare Function GetIpAddrTable Lib &#8220;IPHlpApi&#8221; (pIPAdrTable As Byte, pdwSize As Long, ByVal Sort As Long) As Long&#160;&#160; Const Max_IP = 5&#160;&#160; Type IPINFO&#160;&#160;&#160;&#160;&#160;&#160; dwAddr&#160;&#160;&#160; As Long&#160;&#160;&#160;&#160;&#160;&#160; dwIndex&#160;&#160;&#160; As Long&#160;&#160;&#160;&#160;&#160;&#160; dwMask&#160;&#160;&#160; As Long&#160;&#160;&#160;&#160;&#160;&#160; dwBCastAddr&#160;&#160;&#160; As Long

&#160;&#160;&#160;&#160;&#160;&#160; dwReasmSize&#160;&#160;&#160;&#160;&#160; [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3805.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>xmlhttp Content-Type详细结构介绍附表</title>
		<link>http://www.vicmiao.com/html/y2009/3804.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3804.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 06:37:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<category><![CDATA[xmlhttp]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3804.html</guid>
		<description><![CDATA[&#160;
发帖机必备技术

&#160;









Description of Data Content
Typical Filename Extensions
MIME type/subtype


&#160;
&#160;
&#160;


Text and Text-Related Types
&#160;
&#160;


HTML text data (RFC 1866)
html htm
text/html


Plain text: documents; program listings
txt c c++ pl cc h
text/plain


Richtext (obsolete - replaced by text/enriched)
&#160;
text/richtext


Structure enhanced text
(etx?)
text/x-setext


Enriched text markup (RFC 1896)
&#160;
text/enriched


Tab-separated values (tabular)
(tsv?)
text/tab-separated-values


SGML documents (RFC 1874)
&#160;
text/sgml


Speech synthesis data (MVP Solutions)
talk
text/x-speech


&#160;
&#160;
&#160;


Document Stylesheet Types
&#160;
&#160;


Cascading Stylesheets
css
text/css


DSSSL-online stylesheets
&#160;
application/dsssl (proposed)


&#160;
&#160;
&#160;


Image Types
&#160;
&#160;


GIF
gif
image/gif


X-Windows bitmap (b/w)
xbm
image/x-xbitmap


X-Windows pixelmap (8-bit color)
xpm
image/x-xpixmap


Portable [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3804.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>XMLHTTP 采集及简单示例</title>
		<link>http://www.vicmiao.com/html/y2009/3803.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3803.html#comments</comments>
		<pubDate>Sat, 25 Apr 2009 04:01:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<category><![CDATA[xmlhttp]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3803.html</guid>
		<description><![CDATA[现在网上流行的小偷程序比较多，有新闻类小偷，音乐小偷，下载小偷，那么它们是如何做的呢，下面我来做个简单介绍，希望对各位站长有所帮助。（一）原理小偷程序实际上是通过了XML中的XMLHTTP组件调用其它网站上的网页。比如新闻小偷程序，很多都是调用了sina的新闻网页，并且对其中的html 进行了一些替换，同时对广告也进行了过滤。用小偷程序的优点有：无须维护网站，因为小偷程序中的数据来自其他网站，它将随着该网站的更新而更新；可以节省服务器资源，一般小偷程序就几个文件，所有网页内容都是来自其他网站。缺点有：不稳定，如果目标网站出错，程序也会出错，而且，如果目标网站进行升级维护，那么小偷程序也要进行相应修改；速度，因为是远程调用，速度和在本地服务器上读取数据比起来，肯定要慢一些。

（二）事例下面就XMLHTTP在ASP中的应用做个简单说明&#60;%&#8216;常用函数&#8216;1、输入url目标网页地址，返回值getHTTPPage是目标网页的html代码function getHTTPPage(url)&#160; dim Http&#160; set Http=server.createobject(&#8221;MSXML2.XMLHTTP&#8221;&#160; Http.open &#8220;GET&#8221;,url,false&#160; Http.send()&#160; if Http.readystate&#60;&#62;4 then &#160;&#160;&#160; exit function&#160; end if&#160; getHTTPPage=bytesToBSTR(Http.responseBody,&#8221;GB2312&#8243;&#160; set http=nothing&#160; if err.number&#60;&#62;0 then err.Clear end function&#8216;2、转换乱玛，直接用xmlhttp调用有中文字符的网页得到的将是乱玛，可以通过adodb.stream组件进行转换Function BytesToBstr(body,Cset)&#160;&#160;&#160; dim objstream&#160;&#160;&#160; set objstream = Server.CreateObject(&#8221;adodb.stream&#8221;&#160;&#160;&#160; objstream.Type = 1&#160;&#160;&#160; objstream.Mode =3&#160;&#160;&#160; objstream.Open&#160;&#160;&#160; objstream.Write body&#160;&#160;&#160; objstream.Position = 0&#160;&#160;&#160; objstream.Type = 2&#160;&#160;&#160; objstream.Charset = Cset&#160;&#160;&#160; BytesToBstr = objstream.ReadText &#160;&#160;&#160; [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3803.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>用XMLHTTP   Post   Form时的表单乱码有两方面的原因</title>
		<link>http://www.vicmiao.com/html/y2009/3802.html</link>
		<comments>http://www.vicmiao.com/html/y2009/3802.html#comments</comments>
		<pubDate>Tue, 21 Apr 2009 20:10:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[编　程|VisualBasic]]></category>

		<guid isPermaLink="false">http://www.vicmiao.com/html/y2009/3802.html</guid>
		<description><![CDATA[用XMLHTTP&#160;&#160; Post&#160;&#160; Form时的表单乱码有两方面的原因——Post表单数据时中文乱码；服务器Response被XMLHTTP不正确编码引起的乱码。换句话说，本文主要解决两个问题——怎样正确Post中文内容以及怎样正确显示得到的中文内容。&#160;&#160;&#160;&#160; &#160; 先看看E文的表单是怎么提交的：&#160;&#160; &#160; strA&#160;&#160; =&#160;&#160; &#8220;submit1=&#160;&#160; Submit&#38;text1=scsdfsd&#8221;;&#160;&#160; &#160; var&#160;&#160; oReq&#160;&#160; =&#160;&#160; new&#160;&#160; ActiveXObject(&#8221;MSXML2.XMLHTTP&#8221;);&#160;&#160; &#160; oReq.open(&#8221;POST&#8221;,&#160;&#160; &#8220;http://ServerName/VDir/TstResult.asp&#8221;&#160;&#160; ,false);&#160;&#160; &#160; oReq.setRequestHeader(&#8221;Content-Length&#8221;,strA.length);&#160;&#160;&#160;&#160;&#160;&#160; &#160; oReq.setRequestHeader(&#8221;CONTENT-TYPE&#8221;,&#8221;application/x-www-form-urlencoded&#8221;);&#160;&#160; &#160; oReq.send(strA);&#160;&#160; 

&#160; 如果把strA&#160;&#160; =&#160;&#160; &#8220;submit1=Submit&#38;text1=scsdfsd&#8221;;换成：&#160;&#160; &#160; strA&#160;&#160; =&#160;&#160; &#8220;submit1=Submit&#38;text1=中文&#8221;;&#160;&#160; &#160; 你会发现提交上去的东东根本不对，ASP中Request.Form(&#8221;Text1&#8243;）根本取不到值。俺用Request.BinaryRead把一个 HTML&#160;&#160; Form中的Post内容写出来看了看，才发现问题——Form提交时也要编码的，编码后的中文是类似于%??%??的转义字符，比如“中文”就被编码为：%D6%D0%CE%C4。呵呵，也怪俺笨，人家CONTENT-TYPE里明明写的清清楚楚——application/x-www-form- urlencoded，urlencoded嘛当然就是这个样子了。既然这样,那我们也知道该怎么办了——自己做转换，代码见下：&#160;&#160; &#160; Function&#160;&#160; URLEncoding(vstrIn)&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; strReturn&#160;&#160; =&#160;&#160; &#8220;&#8221;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For&#160;&#160; i&#160;&#160; =&#160;&#160; 1&#160;&#160; To&#160;&#160; Len(vstrIn)&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ThisChr&#160;&#160; [...]]]></description>
		<wfw:commentRss>http://www.vicmiao.com/html/y2009/3802.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
