<?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/lulustray" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/lulustray" type="application/rss+xml"></fs:self_link><lastBuildDate>Sat, 27 Sep 2008 14:42:00 GMT</lastBuildDate><title>lulustray的专栏</title><description>------安安静静写程序</description><link>http://blog.csdn.net/lulustray/</link><item><title>小i机器人sendsendActivity出的frame页的权限问题解决</title><link>http://blog.csdn.net/lulustray/archive/2008/09/27/2988137.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/2988137.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/2988137.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2988137</trackback:ping><description>小i机器人sendsendActivity出的frame页的权限问题解决方案……&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/2988137.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 27 Sep 2008 22:42:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2008/09/27/2988137.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2008/09/27/2988137.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>CustomValidator不工作问题</title><link>http://blog.csdn.net/lulustray/archive/2008/09/25/2978088.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/2978088.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/2978088.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2978088</trackback:ping><description>今天偶然用了下CustomValidator，放在ascx中不起作用。最后发现如下问题：&lt;br&gt;&lt;p&gt;If your custom validator does &lt;b style=&quot;color: black; background-color: rgb(153, 255, 153);&quot;&gt;not&lt;/b&gt; fire within a wizard control then you should check the follow:&lt;/p&gt;
&lt;p&gt;1)The Wizard expects all validators to use the ValidationGroup name of the Wizard.ID property&lt;br&gt;
&lt;b&gt;&lt;font color=&quot;#800000&quot;&gt;2) You may need to add each participating control and button to the same Validation Group.&lt;/font&gt;&lt;/b&gt;&lt;br&gt;
3)&amp;nbsp;Verify that&amp;nbsp;your javascript code &lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/2978088.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 25 Sep 2008 21:49:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2008/09/25/2978088.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2008/09/25/2978088.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>关于socket跨域访问时请求策略文件问题</title><link>http://blog.csdn.net/lulustray/archive/2008/08/28/2843791.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/2843791.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/2843791.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2843791</trackback:ping><description>经常有人会问起 action script的socket跨域访问问题，闲来无事就总结一下。&lt;br&gt;&lt;b&gt;跨域：&lt;/b&gt;&lt;br&gt;当你的flash应用程序部署在域A：www.a.com，而socket服务端部署在其他的域B：www.b.com时，就会产生跨越访问的问题，也就是常说的安全沙箱限制。&lt;br&gt;&lt;b&gt;跨域访问请求：&lt;/b&gt;&lt;br&gt;当flash需要进行跨越访问时，flash底层会&lt;br&gt;&lt;b&gt;1、&lt;/b&gt;&lt;font color=&quot;#800000&quot;&gt;先向目标服务器的843端口请求有效的安全策略文件&lt;/font&gt;，如果过请求得不到相应或者请求到的策略文件无效，将&lt;br&gt;&lt;b&gt;2、&lt;/b&gt;&lt;font color=&quot;#800000&quot;&gt;会想目标服务器的目标端口（就是你需要连接的端口）请求策略文件&lt;/font&gt;，如果得不到有效策略文件，请求将被中止，并抛出安全限制异常。&lt;br&gt;&lt;b&gt;跨域访问解决方案：&lt;/b&gt;&lt;br&gt;首先，我们需要知道flash是怎么请求安全策略的。随便找个封包截获器就可以截获到请求策略的消息，flash是通过发送消息“&lt;b&gt;&amp;lt;policy-file-request/&amp;gt&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/2843791.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 28 Aug 2008 22:57:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2008/08/28/2843791.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2008/08/28/2843791.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>flash MovieClip色彩调节（AS2实现）</title><link>http://blog.csdn.net/lulustray/archive/2007/07/18/1697274.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1697274.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1697274.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1697274</trackback:ping><description>flash MovieClip色彩调节,包括RGB，亮度，对比度，色相，饱和度调节。&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1697274.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 19 Jul 2007 02:17:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/07/18/1697274.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/07/18/1697274.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>FLASH的UI组件：ASWING</title><link>http://blog.csdn.net/lulustray/archive/2007/06/01/1633677.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1633677.aspx</wfw:comment><slash:comments>6</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1633677.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1633677</trackback:ping><description>ASWING介绍&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1633677.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 01 Jun 2007 16:10:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/06/01/1633677.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/06/01/1633677.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>关于FLEX输出时：IE提示&quot;Alternate HTML content should be placed here. This content requires the Adobe Flash Player&quot;</title><link>http://blog.csdn.net/lulustray/archive/2007/05/28/1627713.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1627713.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1627713.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1627713</trackback:ping><description>关于FLASH的版本问题，及FLEX的Alternate HTML content should be placed here. This content requires the Adobe Flash Player&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1627713.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 28 May 2007 09:30:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/05/28/1627713.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/05/28/1627713.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>(ActionScript 3.0 Cookbook笔记兼翻译)第一章 Action Script基础(上)</title><link>http://blog.csdn.net/lulustray/archive/2007/05/23/1621787.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1621787.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1621787.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1621787</trackback:ping><description>(ActionScript 3.0 Cookbook笔记兼翻译)第一章 Action Script基础(上)&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1621787.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 23 May 2007 14:44:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/05/23/1621787.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/05/23/1621787.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>Click FrameWork框架初体验</title><link>http://blog.csdn.net/lulustray/archive/2007/05/20/1617128.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1617128.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1617128.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1617128</trackback:ping><description>Click FrameWork框架初体验&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1617128.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 May 2007 11:27:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/05/20/1617128.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/05/20/1617128.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>MasterPage的BUG</title><link>http://blog.csdn.net/lulustray/archive/2007/05/20/1617116.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1617116.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1617116.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1617116</trackback:ping><description>一个TabPanel自定义服务器控件和MasterPage的BUG。&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1617116.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 May 2007 10:26:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/05/20/1617116.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/05/20/1617116.aspx</guid><dc:creator>lulustray</dc:creator></item><item><title>关于NHibernate1.2延迟加载及InvalidProxyTypeException异常</title><link>http://blog.csdn.net/lulustray/archive/2007/04/20/1571506.aspx</link><wfw:comment>http://blog.csdn.net/lulustray/comments/1571506.aspx</wfw:comment><slash:comments>9</slash:comments><wfw:commentRss>http://blog.csdn.net/lulustray/comments/commentRss/1571506.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1571506</trackback:ping><description>关于NHibernate1.2延迟加载及InvalidProxyTypeException异常&lt;img src =&quot;http://blog.csdn.net/lulustray/aggbug/1571506.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 20 Apr 2007 13:10:00 +0800</pubDate><author>lulustray</author><comments>http://blog.csdn.net/lulustray/archive/2007/04/20/1571506.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/lulustray/archive/2007/04/20/1571506.aspx</guid><dc:creator>lulustray</dc:creator></item></channel></rss>