上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 52 下一页
摘要: 1.配置文件客户端[目标x86x64]的 可以安装 2.配置文件完全的目标x86x64的 出现闪退. 3.服务器核心的出现无法安装 安装 sqlserver 2008R2数据库 报错 \最后留下了它, 又安装 sqlserver 2008 数据库 报错 解决未能加载程序集错误, 又一脸懵逼..... 阅读全文
posted @ 2018-11-29 13:22 enych 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 把delete更改为mydelete正常. 阅读全文
posted @ 2018-11-29 08:41 enych 阅读(808) 评论(3) 推荐(0) 编辑
摘要: var t0est = Convert.ToString(""+null);//结果"" var t1est = ("" + null).ToString(); //结果"" var t2est = null.ToString(); //语法错误 阅读全文
posted @ 2018-11-28 14:43 enych 阅读(136) 评论(0) 推荐(0) 编辑
摘要: get 发送数据 (没有测试) var formData = new FormData(); formData.append("sets", sets); var posturl = "/123/456/789"; post(posturl, formData); 阅读全文
posted @ 2018-11-26 22:52 enych 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 服务器接收 http://www.huangwenchao.com.cn/2015/09/html-file-blob.html https://blog.csdn.net/moonpure/article/details/50462043 阅读全文
posted @ 2018-11-26 21:46 enych 阅读(617) 评论(0) 推荐(0) 编辑
摘要: int num = 12345; string num1 = Convert.ToString(12345, 16); byte[] bytes = BitConverter.GetBytes(num);//将int32转换为字节数组 num = BitConverter.ToInt32(bytes,... 阅读全文
posted @ 2018-11-23 11:27 enych 阅读(3151) 评论(0) 推荐(0) 编辑
摘要: WebKit.WebKitBrowser kitBrowser = new WebKit.WebKitBrowser(); kitBrowser.Dock = DockStyle.Fill; // kitBrowser.Navigate("http://www.baidu.com"); kitBrow... 阅读全文
posted @ 2018-11-23 08:34 enych 阅读(2306) 评论(0) 推荐(0) 编辑
摘要: List list1=new List(); List list2=new List(); //Tuple, List> tuple = new Tuple, List>(); //报错,不能这样初始化. Tuple, List> pfInfo = Tuple.Create(list1, list2)... 阅读全文
posted @ 2018-11-22 11:02 enych 阅读(2296) 评论(0) 推荐(0) 编辑
摘要: public bool IfTime(string StartTime, string EndTime) { DateTime dt1 = Convert.ToDateTime(StartTime); DateTime dt2 = Convert.ToDateTime(EndTime); if (D 阅读全文
posted @ 2018-11-20 17:44 enych 阅读(4176) 评论(0) 推荐(0) 编辑
摘要: //最大化 this.WindowState = FormWindowState.Maximized; //去掉标题栏 this.FormBorderStyle = FormBorderStyle.None; //设置picbox this.pictu... 阅读全文
posted @ 2018-11-20 10:16 enych 阅读(176) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 52 下一页