.Net的体系结构 1.CLR CLS CTS CLR:Common Language Runtime 公共语言运行库 CLS:Common Language Specifiation 公共语言规范 CTS:Common Type System 能通用语言类型系统 贴有国家3c认证 2.应用程序域 以前:很多实例(程序)运行在一个进程中,当一个实例崩溃了,其它的程序也会受到影响 现在:一个新实例,一个进程,一个应用程序哉,在物理上(每一个应用程序域在32位的系统……
语法 查询表达 式必须是from 子句的开头,以select 或 group子句结束。在这两个字句之间,可以where,orderby,join,let和其它from子句 其它 AsParallel 并行查询 Stopwatch sw = new Stopwatch(); Stopwatch sw2 = new Stopwatch(); var list = new List<Person>(); for (int i = 0; i < 2000000; i++) { list.Add(new Person(i.ToString() + "名", "中国",……
禁用右键点击(Disable right-click) $(document).bind("contextmenu",function(e){ return false; }); });``` 2. 禁用搜索文本框 ```$(document).ready(function() { $("input.text1").val("Enter your search text here"); textFill($('input.text1')); }); function textFill(input){ //input focus text function var originalvalue = input.val(); input.focus( function(){ if( $.trim(input.val()) == originalvalue ){ input.val(''); } }); input.blur( function(){ if( $.trim(input.val()) == '' ){ input.val(originalvalue); } }); }``` 3. 新窗口打开链接 ```$(document).ready(function() { //Example 1: Every link will open in a new window $('a[href^="http://"]').attr("target", "_blank"); //Example 2: Links with the rel="external" attribute will only open in a new window $('a[@rel$='external']').click(function(){ this.target = "_blank"; }); }); // how to use [open link](http://www.opensourcehunter.com) 检测浏览器 // Target Firefox 2 and above if ($.browser.mozilla……