上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 41 下一页
摘要: https://msdn.microsoft.com/zh-cn/library/microsoft.visualbasic.vbcodeprovider%28v=vs.110%29.aspxreference to a compiler service. 阅读全文
posted @ 2015-12-13 15:32 calochCN 阅读(201) 评论(0) 推荐(0)
摘要: 选择HttpHandler还是HttpModule? HttpHandler和HttpModule之间有什么差别 之所以有这个疑问,是因为在这二类对象中都可以访问Request, Response对象,都能处理请求。 我原以为在博客 用Asp.net写自己的服务框架 中做了那么多的演... 阅读全文
posted @ 2015-12-12 23:49 calochCN 阅读(377) 评论(0) 推荐(0)
摘要: //IE:var script = document.createElement("script");script.setAttribute("type","text/javascript");script.onreadystatechange = function() { if(this.r... 阅读全文
posted @ 2015-12-11 16:30 calochCN 阅读(389) 评论(0) 推荐(0)
摘要: function loadScript(url, callback){ var script = document.createElement_x("script") script.type = "text/javascript"; if (script.readyState){ //IE scri... 阅读全文
posted @ 2015-12-11 16:17 calochCN 阅读(191) 评论(0) 推荐(0)
摘要: 在提到上述的概念之前,首先想说说javascript中函数的隐含参数:arguments Arguments : 该对象代表正在执行的函数和调用它的函数的参数。 [function.]arguments[n] 参数function :选项。当前正在执行的 Function 对象的名字。 n :选项, 要传递给 Function 对象的从0开始的参数值索引。 说明Arguments ... 阅读全文
posted @ 2015-12-11 15:54 calochCN 阅读(166) 评论(0) 推荐(0)
摘要: dynamic:void Main(){ var b="2"; dynamic a="2"; if(a.GetType()==typeof(int))b+=a; if(a.GetType()==typeof(string))b+=a; Console.WriteLine (b); Console.W... 阅读全文
posted @ 2015-12-10 15:13 calochCN 阅读(121) 评论(0) 推荐(0)
摘要: var logger = LoggerResolver.Current.Logger; var dbContext = applicationContext.DatabaseContext; var helper = new DatabaseSchemaHelper(dbContext.Databa 阅读全文
posted @ 2015-12-07 13:59 calochCN 阅读(200) 评论(0) 推荐(0)
摘要: The type or namespace name 'Html' does not exist in the namespace 'System.Web.Mvc' (are you missing an assembly reference?)solution: right click on re... 阅读全文
posted @ 2015-12-01 10:59 calochCN 阅读(419) 评论(0) 推荐(0)
摘要: 1.Manager.ttinclude files = new List(); private Block footer = new Block(); private Block header = new Block(); private ITextTemplatingEngine... 阅读全文
posted @ 2015-11-29 22:16 calochCN 阅读(273) 评论(0) 推荐(0)
摘要: 如题~ 阅读全文
posted @ 2015-11-29 21:50 calochCN 阅读(418) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 41 下一页