.Net

Windows server 2016不能安装.Net_3.5的解决办法

问题描述:使用WindowsServer2016系统,发现在安装.net3.5.1时报错,报错内容如下: 原因分析找不到安装源文件。解决办法下载NetFx3.cab链接:https://pan.baidu.com/s/1eFJmMcIgxqS-gE4HqpRpvg(提取码:1234)点击“开始&r...

Rstudio 下载一个文件出现InternetOpenUrl failed 问题

Rstudio下载一个文件出现InternetOpenUrlfailed问题>source("http://www.statmethods.net/RiA/wmc.txt")Errorinfile(filename,"r",encoding=encoding): ...

asp.net 配置 web.config 禁用VS2013自带的Browser Link功能

我的字符被截断了然后,我修改了下web.config的配置,在appSettings节点里加了这个,如下:<appSettings><addkey="vs:EnableBrowserLink"value="false"/><appSettings&g...

MailHelper

using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.Collections.ObjectModel;using System.Com...
开发笔记·2024-09-29

上传大文件失败的解决办法

默认iis会对文件上传大小进行限制,一种服务器直接修改配置,参考相关文档,一种直接修改网站的配置文件,下面说修改配置文件的方法:1、用计事本打开web.config,找到下面这段。<httpRuntime maxRequestLength="10240"  exe...

无法识别的属性“targetFramework”,请注意属性名称区分大小写

分析器错误消息: 无法识别的属性“targetFramework”。请注意属性名称区分大小写。错误图片:解决方法:修改.NETFramework版本为相应版本即可,我以前用的是2.0换成4.0的时候出现这个错误。1、打开IIs点击IIS根节点;2、看右边的“操作&rdquo...

从客户端中检测到有潜在危险的Request.Form值的解决办法

如果你网站iis服务器asp.net采用了4.0的版本,则默认会阻止客户端的html内容提交,提交后则会出现:从客户端(....)中检测到有潜在危险的Request.Form值...的错误提示。解决办法:用计事本打开web.config文件,找到下面这句<httpRuntimemaxRequestLength=&...

win2012netframework3.5不能安装的解决办法。

卸载:kb5027141、kb5028872、kb5028970或者kb5029915补丁即可。...

C# WebApi 解决跨域问题

Install-PackageMicrosoft.AspNet.WebApi.Cors-Version5.0.0 复制上面代码到程序包管理控制台可安装Cors5.0.0版本代码中添加以上代码...
开发笔记·2024-09-24

http post 使用 RestSharp 调用

1、管理nuget包,搜索RestSharp程序版本选择105.2.3  安装后使用方式为varclient=newRestClient(url);client.Timeout=-1;varrequest=newRestRequest(Method.POST);request.AddHeader(&...

C# RestSharp 添加 Basic Auth 验证

varclient=newRestClient("https://www.51dev.com");varUsername="123";varPassword="123";client.Authenticator=newHttpBasicAuthenticator(Username,Password); ...

IIS报错:HTTP 错误 500.21 – Internal Server Error

问题描述:HTTP错误500.21–InternalServerError处理程序“ExtensionlessUrlHandler-Integrated-4.0”在其模块列表中有一个错误模块“ManagedPipelineHandler” 问题原因:...

C# Post 请求 请求被中止: 未能创建 SSL/TLS 安全通道

添加代码  System.Net.ServicePointManager.SecurityProtocol=System.Net.SecurityProtocolType.Tls12;...

c#异步文件传输功能

c#异步文件传输功能服务器端:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Net;usingSystem.Net.Sockets;usingSystem.Threading;using...
开发笔记·2024-09-09

c#中关于结构体和字节数组转化

最近在使用结构体与字节数组转化来实现socket间数据传输。现在开始整理一下。对于Marshal可以查阅msdn,关于字节数组与结构体转代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSyst...