存档

2010年3月 的存档

mark一个jquery confirm效果prompt插件

2010年3月31日 云飞扬 评论已被关闭

http://trentrichardson.com/Impromptu/index.php 想找个弹出confirm效果,感觉不错 其中一个A nice clean blue theme.官方有demo $.prompt('Hello World!!',{       buttons:{Ok:true,Cancel:false},       prefix:'cleanblue' })%

分类: jquery 标签: ,

System.Data.SQLite类Dll下载地址和移植C# SQLite

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

最近牙龈发炎了,仍然未恢复,博客好久没更新了,
System.Data.SQLite类Dll下载地址
using System.Data.SQLite;
ADO.NET 2.0 Provider for SQLite
http://sourceforge.net/projects/sqlite-dotnet2/files/SQLite%20for%20ADO.NET%202.0/
还有一个移植C# SQLite
http://code.google.com/p/csharp-sqlite/

mark一个jquery confirm插件

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

mark一个jquery confirm插件 http://nadiana.com/jquery-confirm-plugin

分类: jquery 标签: ,

mark一个jquery文本提示插件

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

mark一个jquery文本提示插件

http://demos.usejquery.com/ketchup-plugin/

分类: jquery 标签: ,

c#如何重命名文件

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

今天互联网动态:好像有个优米网上线,优米一听感觉是域名相关,但是非也。网址:http://umiwi.com
方法1 File.Move 移动文件的目录(原文件,新文件)
方法2 MoveTo 移动文件(新文件)源码如下:

分类: c# 标签: ,

Resharper 5.0 beta 下载地址附(keygen注册码 SN)

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

一款NET 插件
刚开始下了4.5不支持vs2010,后来下了5.0支持,用了1天卸载了,VS2010已经很慢了,感觉装了更慢了,
http://www.jetbrains.com/resharper/beta/beta.html
keygen注册码 SN如下:

C#查看文件和修改隐藏属性

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

C#查看文件和修改隐藏属性例子如下:
FileInfo fileInfo = new FileInfo(path);
MakeFileHidden(fileInfo);
// 显示文件是否隐藏
Console.WriteLine("Is file hidden? = " +
((fileInfo.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden));
}

分类: c# 标签: ,

C#如何显示文件创建时间

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

C#如何显示文件创建时间,源码如下:
string path = @"c:\temp\MyTest.txt";
FileInfo fileinfo = new FileInfo(path);
DisplayTimestamps(fileinfo);

分类: c# 标签: ,

jquery ajax提交错误定义方法

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

$.ajax({
..
success:function(json)
{
..
}
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});

分类: ajax, jquery 标签: ,

好东西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日 云飞扬 1 条评论

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