好东西net使用windows 7 或者vista中特性

2010年3月11日 云飞扬 没有评论

发现一个好东西:备忘先,该源码类提供一些windows 7 或者vista中特性的东西
http://code.msdn.microsoft.com/WindowsAPICodePack

Windows® API Code Pack for Microsoft® .NET Framework

分类: c#, 软件下载 标签:

jQuery 1.4新增的jQuery.contains()

2010年3月10日 云飞扬 没有评论

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 :

分类: english, jquery 标签:

Math.Truncate和Math.Round区别

2010年3月9日 云飞扬 没有评论

一个取整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位

分类: c# 标签:

二,八,十,十六进制转为10进制

2010年3月8日 云飞扬 没有评论

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,原来的进制数)。例子如下:

分类: c# 标签: ,

Visual Studio反编译插件NET Reflector Pro

2010年3月5日 云飞扬 没有评论

下载地址: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.

javascript分小时转换

2010年3月1日 云飞扬 没有评论

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小时。我还未测试,源码如下:

分类: english, javascript 标签:

几款php集成运行环境的软件

2010年2月28日 云飞扬 没有评论

这里不提供下载(Your can search in google or baidu)
1.APMServ5.2.6
2.phpStudy
3.其它 一些php cms 开源站也有类似的集成环境

分类: 软件下载 标签:

my gum hurts and some vedio in channel9

2010年2月28日 云飞扬 没有评论

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!

分类: english 标签:

天气预报小常识

2010年2月24日 云飞扬 没有评论

经常看到天气预报,什么前半夜,后半夜,什么半夜前后,不解,找到以下这个
1、白天、上午、下午、中午前后、傍晚前后
白天:指08~20时
上午:指08~12时
中午前后:指10~14时
下午:指12~16时
傍晚前后:指16~20时
2、夜里、上半夜、下半夜、半夜前后、早晨

创建Uri 类的实例,并用它来创建WebRequest 实例

2010年2月23日 云飞扬 没有评论

下面的示例创建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一个例子如下:

分类: c# 标签: ,