07 2017 档案

摘要:写过一些javascript的,应该也会觉得它的代码,看起来紧凑,很舒服吧, 像下面这些等等, function cls1(){ this.id="1"; function fun1(){ for(var i=0;i<10;i++){ ... } } } 而vs写的代码都是{},显示成两行的, cl 阅读全文
posted @ 2017-07-31 16:02 以函 阅读(124) 评论(0) 推荐(0)
摘要:要达到的目录结构: 1。web站,电脑站 主页 / /Home 频道页 /Channel1/List /Channel1/Detail /Channel2/List 用户 /User/username1/Index /User/username1/Contact 2。wap站,手机站 主页 /Wap 阅读全文
posted @ 2017-07-29 09:39 以函 阅读(252) 评论(0) 推荐(0)
摘要:1. App_Start\RouteConfig.cs routes.MapRoute( name: "User", url: "User/{username}/{action}", defaults: new { controller = "User", action = "Index", use 阅读全文
posted @ 2017-07-28 09:45 以函 阅读(128) 评论(0) 推荐(0)
摘要:多个程序集使用app.config时, System.Configuration.ConfigurationManager,指向的只会是主程序集的app.config, 假设有个程序集使用为common 添加,app.config,它生成时,变成了common.dll.config 被引用的程序集自 阅读全文
posted @ 2017-07-25 17:18 以函 阅读(601) 评论(0) 推荐(0)
摘要:如,有 <div id="a"> <div id="b"/> <div> ,则,b.click 事件触发的同时,,一般会触发 a.click ,像event,jquery有的,stopPropagation之类的,就不说了,这里是另外一种思路 可以注意到的是,顺序只是b.click执行完了,才会去执 阅读全文
posted @ 2017-07-25 09:32 以函 阅读(116) 评论(0) 推荐(0)
摘要:开始,程序,Microsoft Visual Studio 2010 ,Visual Studio Tools,Visual Studio 命令提示(2010) devenv /resetskippkgs /log 阅读全文
posted @ 2017-07-07 14:22 以函 阅读(188) 评论(0) 推荐(0)