07 2017 档案
摘要:java环境 1.64位系统只能装64版,否则会出现怪问题 http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 2.环境变更 建变量名为JAVA_HOME,变量值填JDK安装的最终路径
阅读全文
摘要:应用程序池:v2.0 经典 web.config <handlers> <remove name="WebServiceHandlerFactory-Integrated" /> <remove name="ScriptHandlerFactory" /> <remove name="ScriptH
阅读全文
摘要:;with cte as( select id,ParentCategoryId from Category where id = 17 union all select a.id,a.ParentCategoryId from Category a join cte b on a.ParentCa
阅读全文
摘要:public CustomerMap() { this.ToTable("Customer"); this.HasKey(c => c.Id); this.Property(u => u.Username).HasMaxLength(1000); this.Property(u => u.Email
阅读全文
摘要:Windows平台下Git服务器搭建 第一步:下载Java,下载地址:http://www.java.com/zh_CN/ 注意要下载是完整的JDK(其中有jre) 第二步:安装Java.安装步骤不再详述。 第三步:配置Java环境变量. 右键”计算机” => ”属性” => ”高级系统设置” =>
阅读全文
摘要://输入数量更新,不需要失去焦点才触发 $(document).on('input', "input[id^='itemquantity']", function () { saveCart(); })
阅读全文