摘要:
http://claudiobonifazi.com/snippets/metro/ 阅读全文
摘要:
http://www.ligerui.com/ 阅读全文
摘要:
function InsertLink() { var url = $('#linkUrl').val(); var regExp = /^((https?|ftp|news):\/\/)?([a-z]([a-z0-9\-]*[\.。])+([a-z]{2}|aero|arpa|biz|com|coop|edu|gov|info|int|jobs|mil|museum|name|nato|net|org|pro|travel)|(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0 阅读全文
摘要:
http://www.dotblogs.com.tw/lastsecret/archive/2010/04/06/14422.aspxhttp://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application 阅读全文
摘要:
编辑器加载中... alter view V_OnlineCountArg as select avg(count) count , xDate from (select a.[count],convert(nvarchar(100),a.gettime,23) xDate, row_number() over(partition by convert(nvarchar(100),a.gettime,23) order by a.[count] desc, convert(nvarchar(100),a.gettime,23)) rn fro... 阅读全文
摘要:
private void txtLog_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPresent(DataFormats.FileDrop)) { e.Effect = DragDropEffects.Copy; } else { e.Effect = DragDropEffects.None; } ... 阅读全文
摘要:
private void GetAllLog(string file) { DirectoryInfo di = new DirectoryInfo(file); FileSystemInfo[] fsinfo = di.GetFileSystemInfos(); foreach (FileSystemInfo fs in fsinfo) { if (fs is FileInfo) { if (... 阅读全文