摘要:
##1 当我们想导出左侧所有实例时 先点击“设置” 阅读全文
摘要:
string decodedUrl = HttpUtility.UrlDecode(filePath); 阅读全文
摘要:
public static Image UrlToImage(string url) { try { WebClient mywebclient = new WebClient(); byte[] Bytes = mywebclient.DownloadData(url); using (Memor 阅读全文
摘要:
/// <summary> /// jwt 验证接口 /// </summary> /// <param name="url"></param> /// <param name="data"></param> /// <returns></returns> public static string 阅读全文
摘要:
###1、很多人看到403.14就认为是 禁止访问,因为在 Web 服务器上已拒绝目录列表 一般情况站点都是不会允许直接读取目录内容的,如果您的站点目录没有有效的默认文档(例如index.html,index.htm,index.asp或default.asp等),那么当客户直接输入该站点的域名+目 阅读全文
摘要:
 阅读全文
摘要:
#####如果采用之前的HttpWebRequest方法是实现https的请求,会报错无法建立SSL连接 #####换一种读取方式 参考地址 1 ,https://blog.csdn.net/shanghaibao123/article/details/124116749 2,https://www 阅读全文
摘要:
##修改iis默认启动地址 ##每个项目启动都需要服务器,该iis就是本地初始化的服务器。 ##iis设置应用程序池 ##ASP.Net中的配置文件解析 ###web.config ####1,webconfig中的appsetting节点 ####2,webconfig中的connectionSt 阅读全文
摘要:
#Properties——launchSettings.json 启动配置文件,你可以在项目中“Properties”文件夹中找到该文件。launchSettings.json文件是ASP.NET Core应用特有的配置标准,用于应用的启动准备工作,包括环境变量,开发端口等。 在launchSett 阅读全文
摘要:
#1 先添加一个.net core项目 #2 添加nuget包 ###System.data.dll中 system.data命名空间 提供不同的ado.net类 ###这里我们连接的是sql server数据库 public static void Main(string[] args) { Cr 阅读全文