03 2020 档案
通过代码打开mstsc
摘要:using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Security; using System.Secu 阅读全文
posted @ 2020-03-30 16:29 wxm3177 阅读(486) 评论(0) 推荐(0)
通过URL打开Winform exe 程序
摘要:https://blog.csdn.net/shisuizhe/article/details/54949431?locationNum=6&fps=1 https://www.cnblogs.com/yzeng/p/4249907.html http://www.cnblogs.com/wang7 阅读全文
posted @ 2020-03-30 14:36 wxm3177 阅读(308) 评论(0) 推荐(0)
服务器迁移IIS整个配置文件迁移
摘要:%windir%/System32/inetsrv/config/applicationHost.config 阅读全文
posted @ 2020-03-17 19:51 wxm3177 阅读(310) 评论(0) 推荐(0)
判断是否汉字或数字或英文单词
摘要:// <summary> /// 只读形式读取文件 /// </summary> /// <param name="filePath"></param> /// <param name="encoding"></param> /// <returns></returns> public static 阅读全文
posted @ 2020-03-05 17:05 wxm3177 阅读(218) 评论(0) 推荐(0)
Js Json 转url 参数
摘要:var params = Object.keys(qdata).map(function (key) { return encodeURIComponent(key) + "=" + encodeURIComponent(qdata[key]); }).join("&"); 阅读全文
posted @ 2020-03-05 14:17 wxm3177 阅读(1102) 评论(0) 推荐(0)