上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: 以前一直以为IIS应用程序的默认文档只能设置根目录下的文件,像index.html,default.aspx等,后来经同事指点,原来子目录或者子应用程序下的文件也可以添加到根应用程序的默认文档列表中。 之前为了实现这样的需求,当用户直接访问网站根目录http://www.example.com/的时 阅读全文
posted @ 2018-10-29 13:28 jamess 阅读(3541) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_37815596/article/details/80902516?utm_source=blogxgwz2 阅读全文
posted @ 2018-10-23 17:30 jamess 阅读(359) 评论(0) 推荐(0) 编辑
摘要: try { } catch (WebException ex) { HttpWebResponse response = (HttpWebResponse)ex.Response; Console.WriteLine("Error code: {0}", response.StatusCode); using (Stream data = response.G... 阅读全文
posted @ 2018-10-09 10:30 jamess 阅读(1777) 评论(0) 推荐(0) 编辑
摘要: 1 这个信息比较多 https://api.ipdata.co/?api-key=test 2 这个信息稍微少一些,但可以直接获取用户的IP等信息也可以查询指定的IP地址的信息 https://geoiplookup.io/api 阅读全文
posted @ 2018-08-30 17:01 jamess 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: 第1步 https://jingyan.baidu.com/article/9faa7231e7b78b473c28cbb6.html 第2步 http://www.360doc.com/content/18/0323/22/22445022_739683098.shtml 阅读全文
posted @ 2018-07-26 11:08 jamess 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 第1步 https://www.cnblogs.com/hydor/p/6604053.html 第2步 http://www.cnblogs.com/potential/p/3751426.html *如果发布后提示"Web 部署任务失败。((2018-07-06 14:31:33)在远程计算机上 阅读全文
posted @ 2018-07-06 14:41 jamess 阅读(143) 评论(0) 推荐(0) 编辑
摘要: var e = new Date(); var endOfMonth = new Date(e.getFullYear(), e.getMonth() + 1, 0); 阅读全文
posted @ 2018-07-05 09:45 jamess 阅读(86) 评论(0) 推荐(0) 编辑
摘要: // 方法1 原型Date.prototype.format = function (format) { var o = { "M+": this.getMonth() + 1, //month "d+": this.getDate(), //day "h+": this.getHours(), //hour "m+... 阅读全文
posted @ 2018-07-05 09:44 jamess 阅读(1326) 评论(0) 推荐(0) 编辑
摘要: http://www.jb51.net/article/21191.htm js 读本地文件 Load 阅读全文
posted @ 2018-05-03 17:10 jamess 阅读(194) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/configuration/?tabs=basicconfiguration Nuget 添加 Microsoft.Extensions.Configuration.Json Micr 阅读全文
posted @ 2018-04-09 16:02 jamess 阅读(377) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页