<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[):云淡风轻]]></title>
<description><![CDATA[梦想是一种美丽]]></description>
<link>http://27090371.qzone.qq.com</link>
<lastBuildDate>Sun, 29 Nov 2009 22:20:57 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Sat, 28 Nov 2009 16:32:53 GMT</pubDate>

<item>
<title><![CDATA[蜗居中融藏着梦想，迸发着激情]]></title>
<link>http://27090371.qzone.qq.com/blog/1259425973</link>
<description><![CDATA[<div style="text-align:center;"><embed invokeURLs="false" allowNetworking="internal" enableContextMenu="False" width="502" height="406" loop="false" autostart="false" showstatusbar="1" src="http://player.youku.com/player.php/partnerid/XOTcy/sid/XMTM0NzE4NjY0/v.swf" /><wbr /></div><div style="text-align:center;"> </div>无意中看到这个“蜗居”视频，深有感触。<br>蜗居中融藏着梦想，迸发着激情，燃烧着炙热的心。<br> 这是一个弱肉强食的社会，适者生存。<br>生存的竞争，造就了贫富差距进一步延伸。<br>剩给年轻的我们只有对梦想的渴望。<br><div style="text-align:center;"> </div><div style="text-align:center;"> </div> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1259425973#comment</comments>
<qz:effect>134226432</qz:effect>
<pubDate>Sat, 28 Nov 2009 16:32:53 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1259425973</guid>
</item>

<item>
<title><![CDATA[ASP乱码解决办法]]></title>
<link>http://27090371.qzone.qq.com/blog/1259140431</link>
<description><![CDATA[ASP中文乱码的解决方法<br> <br>注意：下面讨论的主要是UTF-8编码下的情况，GB2312下我会另行说明。<br><br><span style="font-weight:bold"><wbr />1.确保编码声明正确</span><wbr /><br>有些人说meta标签是可有可无的，也有很多源码代码都很不规范，还有人嫌代码多故意删了，这样的做法很糟糕（且不考虑搜索引擎的友好型）<br>对于ASP文件，在代码的第一行加入：<br><span style="color:#ffffff;line-height:1.8em;">&lt;%@LANGUAGE=&quot;VBSCRIPT&quot; CODEPAGE=&quot;65001&quot;%&gt;</span><wbr /><br>如果您的网页是基于GB2312编码的，请在代码第一行加入：<br><span style="color:#ffffff;line-height:1.8em;">&lt;%@LANGUAGE=&quot;VBSCRIPT&quot; CODEPAGE=&quot;936&quot;%&gt;</span><wbr /><br>------------------------------------------------------------------------<br>然后在HTML的HEAD部分加入META标签：<br>UTF-8 ：<br><span style="color:#ffffff;line-height:1.8em;">&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;</span><wbr /><br>GB2312 ：<br><span style="color:#ffffff;line-height:1.8em;">&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot; /&gt;</span><wbr /><br>--------------------------------------------------------------------------------------------<br>如果您还有外联的CSS文件，也在第一行加入：<br>UTF-8 ：<span style="color:#ffffff;line-height:1.8em;">@charset &quot;utf-8&quot;;</span><wbr /><br>GB2312 ：<span style="color:#ffffff;line-height:1.8em;">@charset &quot;GB2312&quot;;</span><wbr /><br><br><span style="font-weight:bold"><wbr />2.dreamweaver页面属性</span><wbr /><br>如果您使用dreamweaver作为编辑工具，在保存网页时请将其保存为相应的编码<br>如果您在不同的平台、计算机编辑网页，很可能编码方式会变化（尽管您的网页编码中仍然声明了相应的编码方式），你可以尝试用dreamweaver将出现乱码的网页另存为UTF-8的格式。<br>以UTF-8为例：<br> <br><br><span style="font-weight:bold"><wbr />3.链接中传递中文参数</span><wbr /><br>我们很有可能通过链接传递一些中文参数，如提示“删除成功！”的msg参数，在传递前，请将它用server.urlencode()进行URL编码：<br>_________________________________________________________________________<br>| &lt;%                                                                                                                                           |<br>| msg=&quot;删除成功！&quot;                                                                                                                    |<br>| response.redirect(&quot;actclg.asp?msg=&quot;<span style="color:#ffffff;line-height:1.8em;">&amp;server.urlencode(msg))            </span><wbr />                                   |<br>| %&gt;                                                                                                                                           |<br>|_________________________________________________________________________|<br><br><span style="font-weight:bold"><wbr />4.使用FCKeditor等HTML编辑器以及各类源码时</span><wbr /><br>请确保各个页面的编码一致，对于大多数优秀的开源代码，它们都能提供编码的设置。请确保其设置与您的网站相同。<br><br><span style="font-weight:bold"><wbr />5.当一次发生错误后，请关闭浏览器，然后再打开，要不将一直是乱码</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1259140431#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Wed, 25 Nov 2009 09:13:51 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1259140431</guid>
</item>

<item>
<title><![CDATA[天使是魔鬼]]></title>
<link>http://27090371.qzone.qq.com/blog/1258889714</link>
<description><![CDATA[多么希望时间能够跳跃。<br>直接跳跃到最终的时刻。<br>多么希望自己能够不再思考。<br>哪怕是一种极端麻痹的方法。<br>多么希望自己不去想一些事情。<br>为什么会有那么多的梦境。<br>直到梦醒时分又是滴血的疼痛。<br>渴望一种忘却记忆的灵丹妙药。<br>束缚在心里的记忆。<br>曾发誓斩碎了千万遍。<br>但一个梦境却又回到心乱如麻的时刻。<br>纵使千刀万剐。<br>也无从斩碎。<br>纵使轮回转世。<br>也无从消却永恒的记忆。<br>天使与魔鬼之间。<br>无从识别。<br>天使是魔鬼。<br>魔鬼也是天使。<br> <br> <br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1258889714#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Sun, 22 Nov 2009 11:35:14 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1258889714</guid>
</item>

<item>
<title><![CDATA[縂說、無鎍謂 滚]]></title>
<link>http://27090371.qzone.qq.com/blog/1258372138</link>
<description><![CDATA[  <br>每天半夜进我空间的一个痴呆者<br>奉劝你一句，别整天的半夜鸡叫。尤其还TM的使用火星文。<br>火星文是最脑残的文字。<br>你穿上马甲我也认识你，你就是脱下马甲我也认识你。<br>别挑战我对你最后一丝的耐性。<br>縂說、無鎍謂 滚每天半夜鸡叫。你他妈是鸡啊<br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1258372138#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Mon, 16 Nov 2009 11:48:58 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1258372138</guid>
</item>

<item>
<title><![CDATA[i could be the one]]></title>
<link>http://27090371.qzone.qq.com/blog/1258196313</link>
<description><![CDATA[<span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your sea of sand<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your warmth of desire<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your prayer of hope<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your gift to everyday<br><br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your tide of heaven<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> a hint of what's to come<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> ordinary<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">one</span><wbr /><br><br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your blue eyed angel<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> storm before <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> calm<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your secret pleasure<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your well wishing well<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your breath of life<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your european dream<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> ordinary<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">one</span><wbr /><br><br>now <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> would lie here in <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> darkness<br>now <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> would lie here for all time<br>now <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> would lie here watching over you<br>comfort you<br>sing to you<br><br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your worry partner<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your socialite<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your green eyed monster<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your force of light<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your temple garden<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your tender hearted child<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> ordinary<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">one</span><wbr /><br><br>now <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> would lie here in <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> darkness<br>now <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> would lie here for all time<br>now <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> would lie here watching over you <br>comfort you<br>sing to you<br><br>will <span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> ever change <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> journey<br>will <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> hushed tones disappear<br>oh little rita<br>let me hold you<br>oh little rita<br>let me love you<br><br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your leafy island<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your thunder in <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> clouds<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your dark enclosure<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your romantic soul<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your small beginning<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> your suit in universe<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> ordinary<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">one</span><wbr /><br><br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> ordinary<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">one</span><wbr /><br><br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> ordinary<br><span style="color:#c60a00;line-height:1.8em;">i</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">could</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">be</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">the</span><wbr /> <span style="color:#c60a00;line-height:1.8em;">one</span><wbr /><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1258196313#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Sat, 14 Nov 2009 10:58:33 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1258196313</guid>
</item>

<item>
<title><![CDATA[Today is your birthday]]></title>
<link>http://27090371.qzone.qq.com/blog/1257590154</link>
<description><![CDATA[Today is your birthday<br>Novernber the seventh, two thousand and nine <br>September 21<br><span style="color:#ff00ff;font-size:18px;font-family:'Times';line-height:1.8em;"><span style="font-weight:bold"><wbr /></span><wbr /></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1257590154#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Sat, 07 Nov 2009 10:35:54 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1257590154</guid>
</item>

<item>
<title><![CDATA[My Prayer]]></title>
<link>http://27090371.qzone.qq.com/blog/1256562437</link>
<description><![CDATA[<br>Dear god, <br>I know that she?s out there...the one I?m suppose to share my <br>whole life with. <br>And in time...you?ll show her to me. <br>Will you take care of her, comfort her, and protect her...until <br>that day we <br>Meet. <br>And let her know...my heart...is beating with hers. <br>In a dream I hold you close <br>Embracing you with my hands <br>You gazed at me with eyes full of love <br>And made me understand <br>That I was meant to share it with you <br>My heart my mind my soul <br>Then I open my eyes <br>And all I see reality shows I?m alone <br>But I know someday that you?ll be by my side <br>Cause I know god?s just waiting till the time is right <br>God will you keep her safe from the thunderstorm <br>When the day?s cold will you keep her warm <br>When the darkness falls will you please shine her the way <br>God will you let her know that I love her so <br>When theres no one there that she?s not alone <br>Just close her eyes and let her know <br>My heart is beating with hers <br>So I prayed until that day (prayed until that day) <br>When our hearts will beat as one (when our hearts hearts will <br>beat as one) <br>I will wait so patiently (patiently) <br>For that day to come (for that day to come) <br>I know someday that you?ll be by my side <br>Cause I know god?s just waiting till the time is right <br>God will you keep her safe from the thunderstorm <br>When the day?s cold will you keep her warm <br>When the darkness falls will you please shine her the way (shine <br>he the way) <br>God will you let her know that I love her so <br>When theres no one there that she?s? not alone <br>Just close her eyes and let her know <br>My heart is beating with hers <br>Is beating with hers (ooo) <br>My heart is beating with hers (oooo) <br>It?s beating with hers <br>God will you keep her safe from the thunderstorm <br>When the day?s cold will you keep her warm <br>When the darkness falls will you please shine her the way <br>God will you let her know that I love her so <br>When theres no one there that she?s not alone <br>Just close her eyes and let her know <br>My heart is beating with hers <br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1256562437#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Mon, 26 Oct 2009 13:07:17 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1256562437</guid>
</item>

<item>
<title><![CDATA[人生如跨栏]]></title>
<link>http://27090371.qzone.qq.com/blog/1256484901</link>
<description><![CDATA[<br>起点，跨栏，冲刺，终点。<br>人生如跨栏。<br>需要一种霸气。<br>需要一种自信的力量。<br>专注目标。<br>全力冲向人生的终点。<br>像刘翔一样霸气。<br>像刘翔一样摆正跨栏的步伐，节奏。<br>像刘翔一样全力冲刺。<br>冲刺人生的终点。<br>也许起跑并不完美。<br>也许前半生的栏已被打掉。<br>后半生的栏。<br>需要调节自己的节奏。<br>需要用一生的霸气。<br>来跨越人生的后半程。<br> <br>记录：第十一界全运会刘翔王者归来，13秒34冠军<br> <br><wbr /><a href="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be04ce8021839111be778317e5227602a74882cd284447984f62a9544335d1acb9d69be42319bfe3699d3d420ed071f33fe64c52dc6ddf23656e990c6148ece1828037628258&amp;a=10&amp;b=23" target="_blank"><img style="width:550px;height:429px;border:0;" src="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be04ce8021839111be778317e5227602a74882cd284447984f62a9544335d1acb9d69be42319bfe3699d3d420ed071f33fe64c52dc6ddf23656e990c6148ece1828037628258&amp;a=10&amp;b=23" /></a><wbr /><br><wbr /><a href="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be044d970530edcfaeaee7288d26357861b07b6e4aef2cf3f414cce2280e493ea087198c9b575df21ab93c501019a836abaec8e00caa298a295fd70753bfa845737f0012ed8f&amp;a=24&amp;b=23" target="_blank"><img style="width:450px;height:301px;border:0;" src="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be044d970530edcfaeaee7288d26357861b07b6e4aef2cf3f414cce2280e493ea087198c9b575df21ab93c501019a836abaec8e00caa298a295fd70753bfa845737f0012ed8f&amp;a=24&amp;b=23" /></a><wbr /><br><wbr /><a href="http://b24.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be046b221d1889fbe2bc87088d27e7a4b5873cf9fcf27a4423e691d695de625234b67f3f018bdb1da3763a5dac8953980cf706120c0f5a5d14bbb5d954a804710d23e8892e23&amp;a=23&amp;b=24" target="_blank"><img style="width:450px;height:287px;border:0;" src="http://b24.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be046b221d1889fbe2bc87088d27e7a4b5873cf9fcf27a4423e691d695de625234b67f3f018bdb1da3763a5dac8953980cf706120c0f5a5d14bbb5d954a804710d23e8892e23&amp;a=23&amp;b=24" /></a><wbr /><br><wbr /><a href="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be04b9733920e11834e687b7b97cb3a5b95789b8ae21a77ef3412cc9575c6a27dd1ddc12ea2b41b1155c1595febe2c5f6cd062a47c94e37f37d7576edc37452e82adbfb890bc&amp;a=25&amp;b=23" target="_blank"><img style="width:500px;height:337px;border:0;" src="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be04b9733920e11834e687b7b97cb3a5b95789b8ae21a77ef3412cc9575c6a27dd1ddc12ea2b41b1155c1595febe2c5f6cd062a47c94e37f37d7576edc37452e82adbfb890bc&amp;a=25&amp;b=23" /></a><wbr /><br><wbr /><a href="http://b24.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be04bf579e9807d11d4f93eb2a4cc0ecbd0a4c5c7e962e0fcfaeef6ee5c2bb572c428ab01d4c1eef3f8ed445525e82b4c0d5e829b60243045965c57c97b2c2a341d0fb6836cb&amp;a=24&amp;b=24" target="_blank"><img style="width:528px;height:550px;border:0;" src="http://b24.photo.store.qq.com/http_imgload.cgi?/rurl4_b=68b40bb9480f160286c07caceb79be04bf579e9807d11d4f93eb2a4cc0ecbd0a4c5c7e962e0fcfaeef6ee5c2bb572c428ab01d4c1eef3f8ed445525e82b4c0d5e829b60243045965c57c97b2c2a341d0fb6836cb&amp;a=24&amp;b=24" /></a><wbr /><br><br><br><div style="text-align:center;"><embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="624" height="376" src="http://www.tudou.com/v/oZyz666E9Xo" /></div><div style="text-align:center;"> </div><div style="text-align:center;"> </div><div style="text-align:center;"> </div><div style="text-align:center;"> </div><div style="text-align:center;"> </div><br> <br> <br> <br> <br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1256484901#comment</comments>
<qz:effect>134222337</qz:effect>
<pubDate>Sun, 25 Oct 2009 15:35:01 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1256484901</guid>
</item>

<item>
<title><![CDATA[掌控自己就可以掌控人生]]></title>
<link>http://27090371.qzone.qq.com/blog/1256222803</link>
<description><![CDATA[<br>如果手中的风筝线没有断掉。<br>那么无论风筝飞的有多远。<br>飞的有多高。<br>始终都还会回来。<br>如果手中的风筝线断掉了。<br>无论如何努力。<br>断了线的风筝。<br>都会飘走。<br>都会飘落。<br>掌控自己的风筝线。<br>你就可以掌控爱情。<br>如果你能掌控自己。<br>就能掌控自己的人生。<br><wbr /><a href="http://b12.photo.store.qq.com/http_imgload.cgi?/rurl4_b=28a106849f19e6ccbbabd0e7fb5e8887ae27835910a442956905075a82c8954c4e0b68557d4ac0f2adf44d90f576532d8fdc9a370b47e4a4e8c51042fc66cedc3f3663f7f390013301f7707400065aab3730eb18&amp;a=25&amp;b=12" target="_blank"><img style="width:450px;height:550px;border:0;" src="http://b12.photo.store.qq.com/http_imgload.cgi?/rurl4_b=28a106849f19e6ccbbabd0e7fb5e8887ae27835910a442956905075a82c8954c4e0b68557d4ac0f2adf44d90f576532d8fdc9a370b47e4a4e8c51042fc66cedc3f3663f7f390013301f7707400065aab3730eb18&amp;a=25&amp;b=12" /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1256222803#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Thu, 22 Oct 2009 14:46:43 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1256222803</guid>
</item>

<item>
<title><![CDATA[Just one last dance]]></title>
<link>http://27090371.qzone.qq.com/blog/1256137875</link>
<description><![CDATA[<br>Just one last dance....oh baby...just one last dance <br>We meet in the night in the Spanish café <br>I look in your eyes just don't know what to say <br>It feels like I'm drowning in salty water <br>A few hours left 'til the sun's gonna rise <br>tomorrow will come an it's time to realize <br>our love has finished forever <br>how I wish to come with you (wish to come with you) <br>how I wish we make it through <br>Just one last dance <br>before we say goodbye <br>when we sway and turn round and round and round <br>it's like the first time <br>Just one more chance <br>hold me tight and keep me warm <br>cause the night is getting cold <br>and I don't know where I belong <br>Just one last dance <br>The wine and the lights and the Spanish guitar <br>I'll never forget how romantic they are <br>but I know, tomorrow I'll lose the one I love <br>There's no way to come with you <br>it's the only way to do <br>Just one last dance <br>before we say goodbye <br>when we sway and turn round and round and round <br>it's like the first time <br>Just one more chance <br>hold me tight and keep me warm <br>cause the night is getting cold <br>and I don't know where I belong <br>Just one last dance <br>Oh,Baby <br>Just one last dance <br>before we say goodbye <br>when we sway and turn round and round and round <br>it's like the first time <br>Just one more chance <br>hold me tight and keep me warm <br>cause the night is getting cold <br>and I don't know where I belong <br>Just one last dance <br>before we say goodbye <br>when we sway and turn round and round and round (When we sway turn around) <br>it's like the first time(hold my tight oh my love) <br>Just one more chance <br>hold me tight and keep me warm <br>cause the night is getting cold(the night is getting cold) <br>and I don't know where I belong(don't know where I belong) <br>Just one last dance <br>Just one last dance <br>Just one more chance <br>Just one last dance <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[27090371@qq.com():云淡风轻)]]></author>
<comments>http://27090371.qzone.qq.com/blog/1256137875#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Wed, 21 Oct 2009 15:11:15 GMT</pubDate>
<guid>http://27090371.qzone.qq.com/blog/1256137875</guid>
</item>

</channel>
</rss>

