会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
enych
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
25
26
27
28
29
30
31
32
33
···
52
下一页
2018年11月29日
关于在win7旗舰版32位上 安装 net4.0 的闪退问题研究 和安装sqlserver2008问题
摘要: 1.配置文件客户端[目标x86x64]的 可以安装 2.配置文件完全的目标x86x64的 出现闪退. 3.服务器核心的出现无法安装 安装 sqlserver 2008R2数据库 报错 \最后留下了它, 又安装 sqlserver 2008 数据库 报错 解决未能加载程序集错误, 又一脸懵逼.....
阅读全文
posted @ 2018-11-29 13:22 enych
阅读(895)
评论(0)
推荐(0)
编辑
js 不能用关键字 delete 做函数名
摘要: 把delete更改为mydelete正常.
阅读全文
posted @ 2018-11-29 08:41 enych
阅读(808)
评论(3)
推荐(0)
编辑
2018年11月28日
C# null
摘要: var t0est = Convert.ToString(""+null);//结果"" var t1est = ("" + null).ToString(); //结果"" var t2est = null.ToString(); //语法错误
阅读全文
posted @ 2018-11-28 14:43 enych
阅读(136)
评论(0)
推荐(0)
编辑
2018年11月26日
post发送数据 mypost input 改变事件
摘要: 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)
编辑
post发送 ArrayBuffer
摘要: 服务器接收 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)
编辑
2018年11月23日
C# 字符串到字节数组,字节数组转整型
摘要: 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)
编辑
C# WebKitBrowser 设置内容
摘要: 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)
编辑
2018年11月22日
C# Tuple 创建一个新二元集合
摘要: 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)
编辑
2018年11月20日
C# 时间对比
摘要: 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)
编辑
C# 控件调整
摘要: //最大化 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
下一页
公告