上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 类默认internal 阅读全文
posted @ 2017-05-25 23:11 PhilXu 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 本机影像生成器(Ngen.exe)工具使用实践 先介绍一点背景知识;.Net程序在运行时会实时(JIT)编译,将.Net程序文件编译成cpu认识的汇编机器码。实时编译需要消耗额外的cpu和内存资源,这对于服务器端程序是无关紧要的,因为实时编译只在程序第一次运行时编译,之后就不需要再做... 阅读全文
posted @ 2017-03-28 00:00 PhilXu 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1. Download ”windows driver kit 10” for windows 10 (I can’t download it in the office) 2. run cmd and cd %programfiles%\Windows Kits\8.0\Testi... 阅读全文
posted @ 2017-03-28 00:00 PhilXu 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1.Open a command prompt 2.Stop IIS:“iisreset/stop“ 3.Change to the .NET Framework 2.0 root directory:“C:\WINDOWS\Microsoft.NET\Framework\v2.0.... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(107) 评论(0) 推荐(0) 编辑
摘要: string str = "aaa,bbb,ccc!ddd"; string[] array1 = str.Split(','); string[] array2 = str.Split(new char[] { ',', '!' }); string[] array3 = Rege... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(113) 评论(0) 推荐(0) 编辑
摘要: function setupPrice() { var baselinePrice = $("#").val(); $("#").attr('placeholder', baselinePrice); } 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(136) 评论(0) 推荐(0) 编辑
摘要: var entres = from entry in db.Entries group entry by entry.Name into groupByName orderby groupByName.Count() descending select new CommentSumm... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 碰到一个莫名其妙的问题,发布网站时,页面文件放在Reports文件夹里,超链的时候跳出windows需要验证.我估计是Reports这个文件夹默认是用于发布报表的.所以需要权限 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 如果网站需要登录才可以访问的话,需要添加 public static void RegisterGlobalFilters(GlobalFilterCollection filters) { filters.Add(new AuthorizeAttribute()); filters... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(105) 评论(0) 推荐(0) 编辑
摘要: http://localhost:5463/CustomAjax/index @section head { } @Html.ActionLink("show the pricy policy", "PrivacyPolicy",null,new { id= "privacyLin... 阅读全文
posted @ 2017-03-05 00:00 PhilXu 阅读(87) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页