<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[思念天灵]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[人攀明月不可得，月行却与人相随。]]></description>
<link>http://hi.baidu.com/lustarking</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[欢迎大家到我小站做客]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/b6c543ece7eda7d72f2e21b8.html]]></link>
        <description><![CDATA[
		
		<p><a target="_blank" href="http://www.dreamlandcn.com">欢迎大家到我小站做客</a></p>
<p><a target="_blank" href="http://www.dreamlandcn.com">蓝色湖畔，随时恭候大家的到来。</a></p>
<p><a target="_blank" href="http://www.dreamlandcn.com">网址： www.dreamlandcn.com</a></p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/%B8%F6%C8%CB%C8%D5%D6%BE">个人日志</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/b6c543ece7eda7d72f2e21b8.html#comment">查看评论</a>]]></description>
        <pubDate>2008-09-08  13:06</pubDate>
        <category><![CDATA[个人日志]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/b6c543ece7eda7d72f2e21b8.html</guid>
</item>

<item>
        <title><![CDATA[HTML+CSS中模拟Vista磨砂玻璃半透明效果。]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/135e327bbd445cf10bd18779.html]]></link>
        <description><![CDATA[
		
		<p>使用css模拟vista毛玻璃效果<br>
近来Windows Vista的毛玻璃效果一直受到界内同行的争相模仿。小弟不才，也来发表下自己的拙见。</p>
<p>首先准备两张背景图片，一张为正常图片，另外一张表现为正常图片的模糊效果。</p>
<p>利用css里面对背景的定义，将正常图片设置成为body节点的背景（注意body的margin必须设置为0，不然模糊的图片和正常的图片会有位置偏移），并且设置background-attachment的属性为fixed。 <br>
接下来在需要应用毛玻璃效果的图片上设置样式，将模糊图片设置为需求节点的背景，同样设置background-attachme</p> <a href="http://hi.baidu.com/lustarking/blog/item/135e327bbd445cf10bd18779.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/%BC%BC%CA%F5%CE%C4%D5%C2">技术文章</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/135e327bbd445cf10bd18779.html#comment">查看评论</a>]]></description>
        <pubDate>2008-04-24  01:12</pubDate>
        <category><![CDATA[技术文章]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/135e327bbd445cf10bd18779.html</guid>
</item>

<item>
        <title><![CDATA[ASP.net UBB标签类(C#)[转]]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/a727b2138b5365d5f6039e21.html]]></link>
        <description><![CDATA[
		
		参考了一些文章，整理了一下，大家可以直接拿去用吧，其实自从有了FreeTextBox这样的东东出现，ＵＢＢ已经渐渐淡出江湖了。
<div>using System;<br>
using System.Text;<br>
using System.Text.RegularExpressions;</div>
<div>namespace Test.Com<br>
{<br>
/// &lt;summary&gt;<br>
 /// 功能：UBB代码<br>
<strong> /// 作者：Rexsp</strong><br>
 /// 日期：2004-4-6<br>
 /// &lt;/summary&gt;<br>
 public class UBB<br>
 {<br>
&nbsp;&nbsp; #region 构造函数<br>
&nbsp;&nbsp; public UBB()<br>
&nbsp;&nbsp; {<br>
</div> <a href="http://hi.baidu.com/lustarking/blog/item/a727b2138b5365d5f6039e21.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/asp%2Enet">asp.net</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/a727b2138b5365d5f6039e21.html#comment">查看评论</a>]]></description>
        <pubDate>2008-04-11  01:18</pubDate>
        <category><![CDATA[asp.net]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/a727b2138b5365d5f6039e21.html</guid>
</item>

<item>
        <title><![CDATA[ASP.net验证码(C#语言)，含多种模式（文字，数字，字母等）精品]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/a94df117064a600cc83d6d20.html]]></link>
        <description><![CDATA[
		
		<p>网上有很多关于验证码做法的资料,但是真正做得完整的却非常少,所以昨天晚上参考了作者：CSDN 上kwklover 的在ASP.Net下实现数字和字符相混合的验证码 (混合,完整,遗憾的是VB.Net,说到这里我想我得感谢stone(QQ9337874),因为我在把VB译成C#的过程中几番出错,最终这段翻译由他完成)!!<br>
随机汉字参考了http://navicy.cnblogs.com/archive/2005/05/08/150756.html这篇文章的,<br>
而最终的纯数字以及GDI+绘图则是从□☆近三十☆(QQ19302038)传给我的一个OA案例里面分离出来的!<br>
所以完整的说,这里面几乎都是别人做好了的,我只</p> <a href="http://hi.baidu.com/lustarking/blog/item/a94df117064a600cc83d6d20.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/asp%2Enet">asp.net</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/a94df117064a600cc83d6d20.html#comment">查看评论</a>]]></description>
        <pubDate>2008-04-11  01:16</pubDate>
        <category><![CDATA[asp.net]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/a94df117064a600cc83d6d20.html</guid>
</item>

<item>
        <title><![CDATA[在VS2005中创建并使用MasterPage]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/e7ef809973724b0d6f068c20.html]]></link>
        <description><![CDATA[
		
		<p>　　<strong><font color="#000000">VS2005</font></strong>的<strong>Mast<a href="http://dev.21tx.com/corp/solution/erp/" target="_blank"><font color="#3366cc">ERP</font></a>age</strong>可以定义网站中不同网页的相同部分，如格局、页头、页脚、导航栏等。可以把这些控件定义到一个MasterPage上，其它网页继承这个MasterPage即可。继承后体现在这些网页公有部分都相同，而不同部分在于MasterPage有一个ContantPlaceHolder，这个控件定义了一个可以被其它页面继承的区域，该区域可以被其它页面用来摆放自己的控件。新建</p> <a href="http://hi.baidu.com/lustarking/blog/item/e7ef809973724b0d6f068c20.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/asp%2Enet">asp.net</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/e7ef809973724b0d6f068c20.html#comment">查看评论</a>]]></description>
        <pubDate>2008-04-11  01:13</pubDate>
        <category><![CDATA[asp.net]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/e7ef809973724b0d6f068c20.html</guid>
</item>

<item>
        <title><![CDATA[北京高考零分考卷（不得不服o(∩_∩)o...哈哈）]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/2e6f7e2325db44569822ed98.html]]></link>
        <description><![CDATA[
		
		<p>题目:&ldquo;细雨湿衣看不见，闲花落地听无声&rdquo;是唐朝诗人刘长卿在《别严士元》中的诗句。曾经有人这样理解这句诗：1、这是歌颂春天的美好意境。2、闲花、细雨表达了不为人知的寂寞。3、看不见、听不见不等于无所作为，是一种恬淡的处世之道。4、这种意境已经不适合当今的世界……根据你的看法写一篇作文。题目自拟，体裁不限。字数800以上。</p>
<p> </p>
<p> </p>
<p>　　盛夏，夜，深夜。</p>
<p>　　景山山颠。</p>
<p>　　山上有人，两个人，一男一女。</p>
<p>　　这两人就是当今武林名声最响的两位杀手，男的名秋细</p> <a href="http://hi.baidu.com/lustarking/blog/item/2e6f7e2325db44569822ed98.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/%CE%C4%D1%A7%B7%E7%B2%C9">文学风采</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/2e6f7e2325db44569822ed98.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-20  20:07</pubDate>
        <category><![CDATA[文学风采]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/2e6f7e2325db44569822ed98.html</guid>
</item>

<item>
        <title><![CDATA[开发盗QQ密码程序(汇编实例)]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/49db8112006706cac2fd780f.html]]></link>
        <description><![CDATA[
		
		<table class="FCK__ShowTableBorders" cellspacing="0" cellpadding="0" align="center" border="0">
    <tbody>
        <tr>
            <td class="nrxq">你可以从这个程序学到如何利用汇编...的一些特别特性 <br>
            <br>
            程序下载地址: <br>
            locking.8u8.com/hack/asmqq.rar <br>
            <br>
            <br>
            这是一个我用了一天多编出来的运行在98环境下的 <br>
            记录QQ密码的小程序,只有不到7KB <br>
            </td></tr></tbody></table> <a href="http://hi.baidu.com/lustarking/blog/item/49db8112006706cac2fd780f.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/%BC%BC%CA%F5%CE%C4%D5%C2">技术文章</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/49db8112006706cac2fd780f.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-14  14:22</pubDate>
        <category><![CDATA[技术文章]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/49db8112006706cac2fd780f.html</guid>
</item>

<item>
        <title><![CDATA[汇编”免杀”基础知识总结说明]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/073ca852a5b9b70a0df3e30f.html]]></link>
        <description><![CDATA[
		
		<p>一.机械码,又称机器码.<br>
ultraedit打开,编辑exe文件时你会看到<br>
许许多多的由0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F组成的数码,这些数码<br>
就是机器码.<br>
修改程序时必须通过修改机器码来修改exe文件.</p>
<p>二.需要熟练掌握的全部汇编知识(只有这么多)<br>
不大容易理解,可先强行背住,混个脸儿熟,以后慢慢的就理解了<br>
cmp a,b 比较a与b<br>
mov a,b 把b的值送给a<br>
ret 返回主程序<br>
nop 无作用,英文&ldquo;no operation&rdquo;的简写，意思是&ldquo;do nothing&rdquo;(机器码90)***机器码的含义参看上面<br>
(解</p> <a href="http://hi.baidu.com/lustarking/blog/item/073ca852a5b9b70a0df3e30f.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/%BC%BC%CA%F5%CE%C4%D5%C2">技术文章</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/073ca852a5b9b70a0df3e30f.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-14  14:20</pubDate>
        <category><![CDATA[技术文章]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/073ca852a5b9b70a0df3e30f.html</guid>
</item>

<item>
        <title><![CDATA[vb 屏幕飘雪]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/de6934f4403a0eeb7709d703.html]]></link>
        <description><![CDATA[
		
		<p>写了小半天 呵呵`` <br>
你看看好么？ &quot;小强VB&quot;</p>
<p>Dim Snow(1000, 2), Amounty As Integer <br>
Private Sub Form_Load() <br>
Form1.Show <br>
DoEvents <br>
Randomize <br>
Amounty = 325 <br>
For J = 1 To Amounty <br>
Snow(J, 0) = Int(Rnd ＊ Form1.Width) <br>
Snow(J, 1) = Int(Rnd ＊ Form1.Height) <br>
Snow(J, 2) = 10 ＋ (Rnd ＊ 20) <br>
Next J <br>
Do While Not (DoEvents = 0) <br>
For LS = 1 To 10 <br>
For I = 1 To Amounty <br>
OldX = Snow(I, 0): OldY = Snow(I, 1) <br>
Snow(I, 1) </p> <a href="http://hi.baidu.com/lustarking/blog/item/de6934f4403a0eeb7709d703.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/Vb">Vb</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/de6934f4403a0eeb7709d703.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-14  14:13</pubDate>
        <category><![CDATA[Vb]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/de6934f4403a0eeb7709d703.html</guid>
</item>

<item>
        <title><![CDATA[vb截取屏幕的模块，代码中可以直接调用]]></title>
        <link><![CDATA[http://hi.baidu.com/lustarking/blog/item/f5269364f7d9bdf4f6365402.html]]></link>
        <description><![CDATA[
		
		<p>vb截取屏幕的模块，代码中可以直接调用</p>
<p>把下面的代码复制到你新建的模块里就可以了，然后在程序中调用就用<br>
Private Sub Command1_Click()<br>
&nbsp;&nbsp;&nbsp;  Me.Picture = CaptureScreen<br>
End Sub</p>
<p>模块代码</p>
<p> </p>
<p>Option Explicit</p>
<p>'定位鼠标。<br>
Private Type POINTAPI</p>
<p>&nbsp;&nbsp;&nbsp;  x As Long<br>
&nbsp;&nbsp;&nbsp;  y As Long</p>
<p>End Type</p>
<p>Private Type PALETTEENTRY<br>
&nbsp;&nbsp;&nbsp;  peRed As Byte<br>
&nbsp;&nbsp;&nbsp;  peGreen As By</p> <a href="http://hi.baidu.com/lustarking/blog/item/f5269364f7d9bdf4f6365402.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/lustarking/blog/category/Vb">Vb</a>&nbsp;<a href="http://hi.baidu.com/lustarking/blog/item/f5269364f7d9bdf4f6365402.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-14  14:12</pubDate>
        <category><![CDATA[Vb]]></category>
        <author><![CDATA[思念天灵]]></author>
		<guid>http://hi.baidu.com/lustarking/blog/item/f5269364f7d9bdf4f6365402.html</guid>
</item>


</channel>
</rss>