上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
摘要: /// <summary> /// http下载文件 /// </summary> /// <param name="url">下载文件地址</param> /// <returns></returns> public static Stream HttpDownload(string url) { 阅读全文
posted @ 2020-09-21 16:01 LBO.net 阅读(7722) 评论(1) 推荐(0)
摘要: #region 表单提交 /// <summary> /// 使用Post方法获取字符串结果 /// </summary> /// <param name="url"></param> /// <param name="formItems">Post表单内容</param> /// <param n 阅读全文
posted @ 2020-09-01 15:25 LBO.net 阅读(738) 评论(0) 推荐(0)
摘要: Uri uri = new Uri("url路径"); string parmValue=HttpUtility.ParseQueryString(uri.Query).Get("参数名"); 阅读全文
posted @ 2020-09-01 15:19 LBO.net 阅读(547) 评论(0) 推荐(0)
摘要: using HtmlAgilityPack; using Nito.AsyncEx; using System; using System.Diagnostics; using System.IO; using System.IO.Compression; using System.Net; usi 阅读全文
posted @ 2020-09-01 10:19 LBO.net 阅读(347) 评论(0) 推荐(0)
摘要: 1、ConfigureServices方法里写如下代码: services .AddCors(builder => { builder.AddDefaultPolicy(configure => { configure.AllowAnyOrigin().AllowAnyMethod().AllowA 阅读全文
posted @ 2020-07-10 09:04 LBO.net 阅读(558) 评论(0) 推荐(1)
摘要: var json = @"{ 'DisplayName': '新一代算法模型', 'CustomerType': 1, 'Report': { 'TotalCustomerCount': 1000, 'TotalTradeCount': 50 }, 'CustomerIDHash': [1,2,3, 阅读全文
posted @ 2020-07-02 15:56 LBO.net 阅读(3953) 评论(0) 推荐(0)
摘要: String.prototype.MD5 = function (bit) { var sMessage = this; function RotateLeft(lValue, iShiftBits) { return (lValue << iShiftBits) | (lValue >>> (32 阅读全文
posted @ 2020-05-29 08:46 LBO.net 阅读(3922) 评论(0) 推荐(0)
摘要: 在输入input时会提示原来输入过的内容,还会出现下拉的历史记录,禁止这种情况只需在input中加入:autocomplete=“off” <input type="text" autocomplete="off" /> autocomplete 属性是用来规定输入字段是否启用自动完成的功能。 补充 阅读全文
posted @ 2020-05-25 09:47 LBO.net 阅读(786) 评论(0) 推荐(0)
摘要: 1、<< 左移操作符: 左移操作符,将第一个操作数向左移动第二个操作数指定的位数,空出的位置补0。左移相当于乘. 左移一位相当于乘2;左移两位相当于乘4;左移三位相当于乘8。 如:x<<1= x*2x<<2= x*4x<<3= x*8x<<4= x*16 2、>> 右移操作符: 右移位运算符(>>) 阅读全文
posted @ 2020-05-14 10:53 LBO.net 阅读(1030) 评论(0) 推荐(0)
摘要: 如何在IIS上发布网站 阅读全文
posted @ 2020-05-14 10:19 LBO.net 阅读(255) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
//返回顶部