<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>云飞扬的ITblog</title>
	<atom:link href="http://www.ajaxcn.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxcn.net</link>
	<description>关注 flex ajax asp.net等</description>
	<lastBuildDate>Tue, 09 Mar 2010 17:03:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery 1.4新增的jQuery.contains()</title>
		<link>http://www.ajaxcn.net/archives/839</link>
		<comments>http://www.ajaxcn.net/archives/839#comments</comments>
		<pubDate>Tue, 09 Mar 2010 16:51:35 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=839</guid>
		<description><![CDATA[Today I went out comp. it seems big dust is blowing,look closer is the snow.of course it diffierent of yesterday's
which called sleet. it means  rain and snow togather.rain contains snow.Today I want's learn jquery.contains().
jQuery.contains( container, contained ) 
 Returns: Boolean  
sample :]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/839/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Math.Truncate和Math.Round区别</title>
		<link>http://www.ajaxcn.net/archives/834</link>
		<comments>http://www.ajaxcn.net/archives/834#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:21:04 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[Math]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=834</guid>
		<description><![CDATA[一个取整Truncate，一个包含小数Round
decimal pi = (decimal)System.Math.PI;
 decimal decRet = System.Math.Truncate(pi);//取整数部分3
 double trouble = 5.555;
 double dblRet = System.Math.Truncate(trouble);//取浮点数部分5.0
 double ddround=System.Math.Round(trouble,2);显示为5.56 4舍五入，保留几位小数，2表示2位
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/834/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>二,八,十,十六进制转为10进制</title>
		<link>http://www.ajaxcn.net/archives/826</link>
		<comments>http://www.ajaxcn.net/archives/826#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:58:48 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[10进制]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/archives/826</guid>
		<description><![CDATA[I haved'n write blog a few days, sometimes want's write something,but didn't,after a few days, of course forgot almost几天没写，有时想写，但是没写，结果忘了差不多了。转化为10进制，使用的是convert.ToInt32(string,原来的进制数)。例子如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/826/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio反编译插件NET Reflector Pro</title>
		<link>http://www.ajaxcn.net/archives/823</link>
		<comments>http://www.ajaxcn.net/archives/823#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:47:12 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[加密解密工具]]></category>
		<category><![CDATA[软件下载]]></category>
		<category><![CDATA[Reflector Pro]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=823</guid>
		<description><![CDATA[下载地址：http://www.red-gate.com/products/reflector/index.htm
参考：http://visualstudiogallery.msdn.microsoft.com/zh-cn/95789cdb-08f9-4dae-9b2f-fc45a452ad77

英文使用方法：
.NET Reflector Pro is an add-in to Visual Studio that lets you debug third-party code and assemblies, even if you don't have the source.
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/823/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript分小时转换</title>
		<link>http://www.ajaxcn.net/archives/818</link>
		<comments>http://www.ajaxcn.net/archives/818#comments</comments>
		<pubDate>Sun, 28 Feb 2010 16:54:13 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=818</guid>
		<description><![CDATA[javascript minu convert hour
this is a simple javascript minu convert hour sample,i from 0 hour to count 24 hour. I haven't test it,just mark it ! source:
这是一个简单分和小时转换计算，从0小时计算到24小时。我还未测试，源码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/818/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>几款php集成运行环境的软件</title>
		<link>http://www.ajaxcn.net/archives/816</link>
		<comments>http://www.ajaxcn.net/archives/816#comments</comments>
		<pubDate>Sun, 28 Feb 2010 09:45:41 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[软件下载]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=816</guid>
		<description><![CDATA[这里不提供下载（Your can search in google or baidu）
1.APMServ5.2.6
2.phpStudy
3.其它 一些php cms 开源站也有类似的集成环境
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/816/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my gum hurts and some vedio in channel9</title>
		<link>http://www.ajaxcn.net/archives/811</link>
		<comments>http://www.ajaxcn.net/archives/811#comments</comments>
		<pubDate>Sun, 28 Feb 2010 08:07:21 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=811</guid>
		<description><![CDATA[renctly my gum hurts ,it's very painful.
today i  find some forefront vedio in channel9  in http://channel9.msdn.com/
ok,this's my first englis blog,i really to need to partice my english!
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/811/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>天气预报小常识</title>
		<link>http://www.ajaxcn.net/archives/806</link>
		<comments>http://www.ajaxcn.net/archives/806#comments</comments>
		<pubDate>Wed, 24 Feb 2010 15:05:06 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[杂七杂八]]></category>
		<category><![CDATA[天气预报]]></category>
		<category><![CDATA[小常识]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=806</guid>
		<description><![CDATA[经常看到天气预报，什么前半夜，后半夜，什么半夜前后，不解，找到以下这个
1、白天、上午、下午、中午前后、傍晚前后
白天：指08～20时
上午：指08～12时
中午前后：指10～14时
下午：指12～16时
傍晚前后：指16～20时
2、夜里、上半夜、下半夜、半夜前后、早晨]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/806/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>创建Uri 类的实例，并用它来创建WebRequest 实例</title>
		<link>http://www.ajaxcn.net/archives/804</link>
		<comments>http://www.ajaxcn.net/archives/804#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:43:44 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[Uri]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=804</guid>
		<description><![CDATA[下面的示例创建Uri 类的实例，并用它来创建WebRequest 实例。
Uri siteUri = new Uri("http://www.ajaxcn.net/");
WebRequest wr = WebRequest.Create(siteUri);
URI 是 Intranet 或 Internet 上可由应用程序使用的资源的一种简洁表示形式。Uri 类定义了属性和方法来处理 URI，包括分析、比较和组合。Uri 类属性是只读的；若要创建可修改的对象，请使用 UriBuilder 类。
http://msdn.microsoft.com/zh-cn/library/system.uri(VS.85).aspx一个例子如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/804/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>真快Jquery1.4.2出来了</title>
		<link>http://www.ajaxcn.net/archives/802</link>
		<comments>http://www.ajaxcn.net/archives/802#comments</comments>
		<pubDate>Mon, 22 Feb 2010 15:21:11 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=802</guid>
		<description><![CDATA[地址http://blog.jquery.com/2010/02/19/jquery-142-released/ 
好像出个delegate 委托函数吗？
官方举个例子，三个是等效的
$("table").delegate("td", "hover", function(){
 $(this).toggleClass("hover");
});]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/802/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Code -->
