摘要:
原文地址:https://www.cnblogs.com/liweis/p/12594202.html WebService是基于XML格式的,返回的默认结果是XML格式,因为它比较通用,几乎任何编程语言、操作系统和应用程序都能方便的读写。 多番测试 方式一:最简单的例子: 1 2 3 4 5 6 阅读全文
摘要:
原文地址:https://blog.csdn.net/lyl6796910/article/details/122140072 简介消息推送(Push)指运营人员通过自己的产品或第三方工具对用户移动设备进行的主动消息推送。用户可以在移动设备锁定屏幕和通知栏看到push消息通知,通知栏点击可唤起APP 阅读全文
摘要:
行号 private void dataGridView1_Paint(object sender, PaintEventArgs e) { int irowcount = this.dataGridView1.DisplayedRowCount(true); if (irowcount == 0) 阅读全文
摘要:
先安装 ASP.NET Core Module 地址:https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/aspnet-core-module?view=aspnetcore-6.0 然后文件发布 然后再iis上部署,和普通的一样 阅读全文
摘要:
ConfigureServices中配置 services.AddSwaggerGen(options => { //var xmlPath = Path.Combine(AppContext.BaseDirectory, $"{Assembly.GetExecutingAssembly().Get 阅读全文
摘要:
先了解core的请求管道 参考博客地址:https://www.cnblogs.com/hippieZhou/p/11205573.html /// <summary> /// Http 请求中间件 /// </summary> public class HttpContextMiddleware 阅读全文
摘要:
先安装node.js,在安装cnpm 然后打开vs code 输入命令 cnpm install 背景:使用npm下载时,出现错误Unexpected end of JSON input while parsing near···解决方法:先清除缓存,再重新安装清除缓存:运行npm cache cl 阅读全文
摘要:
百度连接rocketmq,然后报错了 找到了内网的ip地址,报 然后百度,修改brokerIP1的地址 :https://www.cnblogs.com/smail-bao/p/6905460.html; https://blog.csdn.net/chuanhejiu9868/article/de 阅读全文
摘要:
用cmd远程能访问,但是用代码访问不了 redis-cli -h ip -p 端口 -a 密码 然后改链接"RedisConnectionString": "ip:端口,password=密码,abortConnect=false" 这个abortConnect=false很重要,没有就报错 It 阅读全文
摘要:
模拟多线程处理数据的时间 namespace reportfile.MultiThread { public delegate void DelegateShowStateInfo(string state); public class TestThread { private Queue<Queu 阅读全文
摘要:
递归所有控件并将每个控件的Click()事件连接到同一个处理程序.从那里调用InvokeOnClick().现在单击任何内容将触发主UserControl的Click()事件 public partial class UserControl2 : UserControl { public UserC 阅读全文
摘要:
RESTORE DATABASE [loudi] FROM DISK = N'D:\SqlServiceData\Loudi20210930\2021_09_30_224500_9096001.bak' WITH replace, MOVE N'loudibak' TO N'D:\Program F 阅读全文
摘要:
public class AutoClosingMessageBox { System.Threading.Timer _timeoutTimer; string _caption; AutoClosingMessageBox(string text, string caption, int tim 阅读全文
摘要:
设置表格CustomDrawCell事件,在表格事件里处理 private void gridView1_CustomDrawCell(object sender, DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventArgs e) { if ( 阅读全文
摘要:
继承JsonConverter特性 public class ObjJsonConverter<T> : JsonConverter { public override bool CanConvert(Type objectType) { return objectType == typeof(T) 阅读全文
摘要:
private void InitMunu() { navBarControl.Items.Clear(); navBarControl.Groups.Clear(); navBarControl.SmallImages = this.imageTool;//dev 自带图标才会有用 var dat 阅读全文
摘要:
获取oracel所有表结构和注释 SELECT t1.Table_Name AS "表名称", t3.comments AS "表说明", t1.Column_Name AS "字段名称", t1.Data_Type AS "数据类型", t1.Data_Length AS "长度", t1.Nul 阅读全文
摘要:
string liulanqi = ""; ; try { //从注册表中读取默认浏览器可执行文件路径 var key = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(@"http\shell\open\command\"); string s = 阅读全文
摘要:
原文地址:https://www.cnblogs.com/atomy/archive/2019/11/12/11812458.html 在这个基础上改了下,我加了个全选和按名称的没有按索引 1、新建一个自定义控件,命名为:PopupMenuControl。 2、在PopupMenuControl.D 阅读全文
摘要:
SET @VarSql = 'SELECT TOP 1 @Count=W_Count'+@i+',@Amount=W_Amount'+@i+',@AddCount=W_AddCount'+@i+',@AddAmount=W_AddAmount'+@i+',@DecCount=W_DecCount'+ 阅读全文