码迷,mamicode.com
首页 >  
搜索关键字:code    ( 108667个结果
ASCII详解
ASCII(发音:英语发音:/?æski/ ASS-kee[1],American Standard Code for Information Interchange,美国信息交换标准代码)...
分类:其他好文   时间:2014-09-30 18:38:59    阅读次数:205
MVC开发时常用visual studio扩展
1 Web Essentials : HTML\CSS\Javascript 辅助工具2 VSCommands for Visual Studio3 搜索查看demo示例程序的工具4 Entity Framework Power Tools : Code First实体代码生成
分类:Web程序   时间:2014-09-30 18:37:49    阅读次数:167
循环队列
标准队列是一种先进先出的线性结构。 设想一个用数组实现的容量为2的队列,入队2次后出队1次,再入队一次。传统队列会认为rear已指向末尾,入队失败。而循环队列会将新元素放在arr[0]的位置上,允许rear 队空和队满时头尾指针均相等,因此通过元素个数判断更合理。 {CSDN:CODE:478002}...
分类:其他好文   时间:2014-09-30 18:14:19    阅读次数:169
how to add Javascript and CSS in page layout with sharepoint 2013
how to add Javascript and CSS in page layout with sharepoint 2013 Sometimes, we need create a custom page layout, at the time, if we want to add some javascript and css code, how to do it? we cannot ...
分类:编程语言   时间:2014-09-30 18:03:29    阅读次数:249
网页动态添加的内容,没有触发事件
动态添加元素的事件如果用on方法,要改成另一种写法$(document).on('click', '#list li', function() { //function code here.});
分类:Web程序   时间:2014-09-30 16:25:49    阅读次数:136
HttpWebRequest WebExcepton: The remote server returned an error: (407) Proxy Authentication Required.
1.Supply the credentials of the Currently Logged on User to the Proxy object similar to this:// Begin code change by jeff // Obta...
分类:Web程序   时间:2014-09-30 14:42:49    阅读次数:192
JS 匿名函数 自执行
其实就是将函数直接做为表达调用,使用括号包裹定义函数体,解析器将会以函数表达式的方式去调用定义函数。常见格式:(function() { /* code */ })();解释:包围函数(function(){})的第一对括号向脚本返回未命名的函数,随后一对空括号立即执行返回的未命名函数,括号内为匿名...
分类:Web程序   时间:2014-09-30 14:11:29    阅读次数:210
如何区分MNO和MVNO
MVNO(Mobile Virtaul Network Operator)虚拟网络运营商,没有自己的实体网络,通过租用MNO(Mobile Network Operator)的网络来提供网络服务。 我们知道Spec规定operator之间是通过MCC/MNC (Mobile Country Code/Mobile Network Code)来区分的;而MVNO和对应MNO的MCC/MNC是相同的...
分类:其他好文   时间:2014-09-30 13:36:29    阅读次数:418
ASP.NET尝试着做一个验证码。
新建一个checkcode.aspx用于显示验证码。重要代码如下:private string GenerateCheckCode()//GenerateCheckCode方法生成验证码字符串。 { int num; char code; string ch...
分类:Web程序   时间:2014-09-30 02:03:32    阅读次数:187
java之super关键字
super关键字:在java中使用super来引用基类的成分。程序code:class FatherClass{ public int value; public void f(){ value = 100; System.out.println("Fathe...
分类:编程语言   时间:2014-09-30 00:35:41    阅读次数:261
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!