摘要:
1、建立如下类: /// <summary> /// 年级 /// </summary> public class Grade { /// <summary> /// 年级名 /// </summary> public string GradeName { get; set; } /// <summ 阅读全文
摘要:
1、IIS 里 安装好 SSL 证书后,如何实现 在浏览器里录入 http://www.xxx.com,会自动跳转到 https://www.xxx.com 呢。 首先,下载并安装 IIS 扩展: URL重写(URL Rewrite)扩展 URL重写扩展下载地址: https://www.iis.n 阅读全文
摘要:
var arry = [ "C#", "html", "css", "js","hello" ]; var result= $.inArray("C#", arry); //如果arry数组里面存在"C#" 这个字符串则返回该字符串的数组下标,否则返回(不包含在数组中) -1 阅读全文
摘要:
using Microsoft.Win32; namespace JPGCompact { public partial class MainForm : Form { private void Test() { RegistryKey folders; folders = OpenRegistry 阅读全文
摘要:
@Html.DropDownListFor(m=>m.Recommend,new SelectList(new[]{ new { value = 0, text = "否" },new { value = 1, text = "是" } }, "value", "text", 0),new { @c 阅读全文
摘要:
System.IO.File.WriteAllText(HttpContext.Current.Server.MapPath("~") + @"ApiNlogEX.txt", ex.ToString()); 阅读全文
摘要:
项目需求 由于项目需要将原实体服务器中的VisualSVN Server迁移至新主机中。 环境说明服务器A(迁移源服务器): 操作系统:Windows2012 R2 SE X64 SVN Server版本:VisualSVN-Server-3.3.1-x64 SVN Client版本:Tortois 阅读全文
摘要:
Web.config 配置文件很重要,有些蒙圈,自己稍微整理了下。看起来就简单些。 步骤一: NuGet 给项目安装 Entity Framework。 步骤二: NuGet给项目安装 JetEntityFrameworkProvider 步骤三: 添加数据库位置Web.config <connec 阅读全文
摘要:
auto-complete="off" 阅读全文
摘要:
如果是阿里云服务器需要在”网络与安全”的安全组里添加(1024-65535端口组)如下: 如果开启了服务器防火墙还要添加如下端口: 阅读全文