.NET

  • 2019-12-30 16:28:47
  • Post By 高景洋
又双叕一次的大面积重装系统,本以为经历过N多次环境的变化后,重新部署个环境~ 小Case啦~ 心情如下图: 但~ W~T~F~K~ WinServer 2012 R2 在安装IIS的过程中,提示.net Framework 3.5安装失败 报错内容,与 之前遇到过的问题,一模一样,地址如下: winserver 2012 安装 .net 3.5 报错 但按上次的解决方法去处理时,已经不行了,因为上次是安装Sql Server 2008 R2 报的错,而这次是安装IIS报的错 那怎么处理呢? 答:使用离线安装包,安装.net 3.5 步骤如下: 1、下载离线安装包 链接:https://pan.baidu.com/s/1JYsfuc6iTHz4bzuNS0PQtw 提取码:3bct 2、解压离线安装包 3、在安装过程中,选择源文件,指定目录为 F:\SoftWare\2012及201
查看全文 | 浏览次数(3819)
  • 2019-06-27 17:18:29
  • Post By 高景洋
1、首先,这篇文章是了为纪念一下,不长眼睛的我们~~ 2、原因: 一台数据库服务器,凌晨宕机~凌晨宕机~凌晨宕机~ 最终,无奈,被定性为系统问题,不得不重装系统~ 数据库服务器重装系统,心中1W匹,草泥马疾驰而去~ 1、数据库用的sql server 2、安装sql server又不得不安装,.net Framework 3.5 3、激动人心的时刻来了~ 4、A、独立安装包,安装不上~ B、命令安装安装不上~ C、PowerShell命令方式安装不上 D、网上能找到的方式,基本都试了一遍~ 5、执行结果如图: "操作完成,但未启用NetFx3功能?" 翻译翻译:这句话的意思是,.net Framework 3.5 已经装好了,但是没有启用,没有启用,没有启用啊~
查看全文 | 浏览次数(4173)
  • 2018-10-16 13:04:47
  • Post By 高景洋
当前标识(NT AUTHORITY\NETWORK SERVICE)没有对“C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files”的写访问权限。 遇到这种情况怎么处理呢??? 解决方案: 开始-运行:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i -enable
查看全文 | 浏览次数(3274)
  • 2017-08-01 14:15:19
  • Post By 高景洋
.Net FrameWork 4.5 下载 http://104.192.108.20/softdl.360tpcdn.com/dotnetfx45_full/dotnetfx45_full_4.5.51209.exe
查看全文 | 浏览次数(3249)
  • 2017-07-28 18:42:42
  • Post By 高景洋
if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase)) { ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult); ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; } 注: 1、ServicePointManager 在System.Net 命名空间下 2、Se
查看全文 | 浏览次数(3390)
  • 2016-09-13 18:03:50
  • Post By 高景洋
C#是世界上最好的编程语言
查看全文 | 浏览次数(3188)
  • 2016-03-03 14:41:17
  • Post By 高景洋
http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址] http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=[ip地址] http://whois.pconline.com.cn/?ip=[ip地址字符串]
查看全文 | 浏览次数(3603)
  • 2016-01-09 07:33:15
  • Post By 高景洋
1、Guid.NewGuid().ToString("N") 结果为: 38bddf48f43c48588e0d78761eaa1ce6 2、Guid.NewGuid().ToString("D") 结果为: 57d99d89-caab-482a-a0e9-a0a803eed3ba 3、Guid.NewGuid().ToString("B") 结果为: {09f140d5-af72-44ba-a763-c861304b46f8} 4、Guid.NewGuid().ToString("P") 结果为: (778406c2-efff-4262-ab03-70a77d09c2b5)
查看全文 | 浏览次数(3539)
  • 2015-11-20 13:56:25
  • Post By 高景洋
Install-Package Microsoft.Web.Infrastructure
查看全文 | 浏览次数(3153)
  • 2015-09-16 15:51:46
  • Post By 高景洋
Process process = new Process(); process.StartInfo.FileName = "RunDll32.exe"; process.StartInfo.Arguments = "InetCpl.cpl,ClearMyTracksByProcess 255"; process.StartInfo.UseShellExecute = false; //关闭Shell的使用 process.StartInfo.RedirectStandardInput = true; //重定向标准输入 process.StartInfo.RedirectStandardOutput = true; //重定向标准输出 process.StartInfo.RedirectStandardError = true; //重定向错误输出 process.StartInfo.C
查看全文 | 浏览次数(3390)
  1. 1
  2. 2
  3. 3