C#
ghost123cc
IT
展开
-
C# NPOI 表格合并表格填写数字,格式化
C# NPOI 表格合并表格填写数字,格式化原创 2022-10-24 17:05:17 · 885 阅读 · 1 评论 -
C# 后台读取文件上传指定服务器(web方式)
public string PostData(string url, int timeOut, string fileKeyName, string filePath) { string responseContent; var memStream = new MemoryStream(); var webRequest = (HttpWebRequest)WebRequest.Create(url); ..原创 2022-04-26 23:23:01 · 1454 阅读 · 0 评论 -
easyUI 上传文件
我的后端代码是asp.net 前端使用easy UI ,前端控件有所封装不影响我们的示例://上传代码: if (context.Request.Files.Count <= 0) return; //文件路径指定 string filePath = context.Request["FFilePath"].ToString().原创 2021-11-03 14:18:47 · 2569 阅读 · 0 评论 -
C# 调用cmd 执行注册dll 并复制到Windows下对应的文件夹
private void RegisterDll() { try { //查找固定路径下 string path = AppDomain.CurrentDomain.BaseDirectory + "/Resource/ZKMachine/"; string is64FolderPath = string.Empty; .原创 2021-09-27 19:02:07 · 1216 阅读 · 0 评论 -
C# 网络请求公共代码
public class URLConnection { //提交方法 private string method = "POST"; //Url 响应时间 private int timeOut = 60000; //提交URL private string url; /// /// 发送请求 /// /// //...原创 2021-06-24 15:25:23 · 123 阅读 · 0 评论 -
.NET CORE webAPI 读取微信支付回调信息
1.首先如果是asp.net 的方式的话,可以使用微信官网的相关demo 拿过来可以直接使用。2.如果是.net core webapi 的方式的话, 我们需要通过Request.Body对象读取对应的回调内容,则进行解析,本人是修改了官网提供包中的部分方法System.IO.Stream message = Request.Body; var strResult = string.Empty; try { ...原创 2021-06-24 12:48:16 · 1364 阅读 · 0 评论 -
微信支付回调 .net core web api 方式读取回调信息
https://mp.weixin.qq.com/s/BhoJgqtpisiDtFtTG9PNpg原创 2021-06-18 23:11:25 · 499 阅读 · 0 评论 -
C# 模拟表单上传文件
public class HttpUpload { /// <summary> /// 使用Post方法获取字符串结果 /// </summary> /// <param name="url"></param> /// <param name="formItems">Post表单内容</param> /// <param na.原创 2020-11-25 22:03:33 · 618 阅读 · 0 评论