c#共6篇

iis web.config http跳转https配置

iis net 2.0经典模式下配置文件 配置好后 网址可自动跳转到https<rewrite>标签的内容放入<system.webServer> 没有的话直接复制 <system.webServer>标签下所有内容到配置文件...
suner的头像-行走在路上suner1个月前
0338

NET网站通过web.config 实现http跳转到https

NET网站通过web.config 实现http跳转到https代码如下:<system.webServer> <rewrite> <rules> <rule name='http_toHttps' stopProcessing='true'> <match url='(.*)...
suner的头像-行走在路上suner8个月前
0757

Cloudflare 取客户ip C#和php代码

一·C#Cloudflare 取客户ip using Microsoft.AspNetCore.Http; using System.Linq; namespace myproject.Extensions { public static class HttpContextAccessorExtensions { public static str...
suner的头像-行走在路上suner1年前
0180

request获取指定编码的数据

SearchName = HttpUtility.ParseQueryString(Request.Url.Query, System.Text.Encoding.GetEncoding('GB2312'))['SearchName']; asp.net代码
suner的头像-行走在路上suner1年前
0130

谨慎使用:伪静态URLRewriter.dll 导致c盘临时文件过多

这个问题遇到时候是客户数据库在百万级出现的 路径C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files 32位 路径C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Tempor...
suner的头像-行走在路上suner1年前
080

.net3.5安装失败解决方法

下载3.5离线包.cba格式的 放入C:\Windows目录 dos管理员模式运行 dism /online /Enable-Feature /FeatureName:NetFx3 /Source:'%windir%' /LimitAccess  
suner的头像-行走在路上suner1年前
0170