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