mark一个jquery confirm效果prompt插件
http://trentrichardson.com/Impromptu/index.php 想找个弹出confirm效果,感觉不错 其中一个A nice clean blue theme.官方有demo $.prompt('Hello World!!',{ buttons:{Ok:true,Cancel:false}, prefix:'cleanblue' })%
http://trentrichardson.com/Impromptu/index.php 想找个弹出confirm效果,感觉不错 其中一个A nice clean blue theme.官方有demo $.prompt('Hello World!!',{ buttons:{Ok:true,Cancel:false}, prefix:'cleanblue' })%
最近牙龈发炎了,仍然未恢复,博客好久没更新了,
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插件 http://nadiana.com/jquery-confirm-plugin
今天互联网动态:好像有个优米网上线,优米一听感觉是域名相关,但是非也。网址:http://umiwi.com
方法1 File.Move 移动文件的目录(原文件,新文件)
方法2 MoveTo 移动文件(新文件)源码如下:
一款NET 插件
刚开始下了4.5不支持vs2010,后来下了5.0支持,用了1天卸载了,VS2010已经很慢了,感觉装了更慢了,
http://www.jetbrains.com/resharper/beta/beta.html
keygen注册码 SN如下:
C#查看文件和修改隐藏属性例子如下:
FileInfo fileInfo = new FileInfo(path);
MakeFileHidden(fileInfo);
// 显示文件是否隐藏
Console.WriteLine("Is file hidden? = " +
((fileInfo.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden));
}
C#如何显示文件创建时间,源码如下:
string path = @"c:\temp\MyTest.txt";
FileInfo fileinfo = new FileInfo(path);
DisplayTimestamps(fileinfo);
$.ajax({
..
success:function(json)
{
..
}
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
发现一个好东西:备忘先,该源码类提供一些windows 7 或者vista中特性的东西
http://code.msdn.microsoft.com/WindowsAPICodePack
Windows® API Code Pack for Microsoft® .NET Framework
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 :
一个取整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位
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,原来的进制数)。例子如下:
下载地址: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 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小时。我还未测试,源码如下: