11 2018 档案

摘要:1.配置文件客户端[目标x86x64]的 可以安装 2.配置文件完全的目标x86x64的 出现闪退. 3.服务器核心的出现无法安装 安装 sqlserver 2008R2数据库 报错 \最后留下了它, 又安装 sqlserver 2008 数据库 报错 解决未能加载程序集错误, 又一脸懵逼..... 阅读全文
posted @ 2018-11-29 13:22 enych 阅读(901) 评论(0) 推荐(0) 编辑
摘要:把delete更改为mydelete正常. 阅读全文
posted @ 2018-11-29 08:41 enych 阅读(810) 评论(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 阅读(622) 评论(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 阅读(3153) 评论(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 阅读(2308) 评论(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 阅读(2299) 评论(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 阅读(4179) 评论(0) 推荐(0) 编辑
摘要://最大化 this.WindowState = FormWindowState.Maximized; //去掉标题栏 this.FormBorderStyle = FormBorderStyle.None; //设置picbox this.pictu... 阅读全文
posted @ 2018-11-20 10:16 enych 阅读(176) 评论(0) 推荐(0) 编辑
摘要:namespace invoke和begininvoke的用法 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //声明接受int的方法并返回空的委托。 public delegate v 阅读全文
posted @ 2018-11-19 17:30 enych 阅读(2477) 评论(0) 推荐(0) 编辑
摘要:int startmaxid = 0; if (db.LPicture.Any()) { // LPicture Newmode = db.LPicture.Where(n => ).FirstOrDefault(); startmaxid = db.LPicture... 阅读全文
posted @ 2018-11-19 09:37 enych 阅读(2117) 评论(0) 推荐(0) 编辑
摘要:这个在C#中怎么接收? 阅读全文
posted @ 2018-11-16 23:16 enych 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-11-14 16:51 enych 阅读(4992) 评论(0) 推荐(0) 编辑
摘要:[StringLength(50)] //可空 对应数据库可空 [DefaultValue("")] [DisplayName("添加人用户名")] public string CreateUserName { get; set; } //[... 阅读全文
posted @ 2018-11-14 16:47 enych 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-11-14 15:24 enych 阅读(275) 评论(0) 推荐(0) 编辑
摘要:$("#txttype").val("Down");document.getElementById('form1').action = "/Backstage/xxx/List";document.getElementById("form1").submit();$("#txttype").val( 阅读全文
posted @ 2018-11-13 16:58 enych 阅读(2225) 评论(0) 推荐(0) 编辑
摘要:var str1 = Properties.Resources.ResourceManager.GetObject("String1", null); string url = System.Configuration.ConfigurationManager.AppSettings["url"]; //获得配置文件下的值 阅读全文
posted @ 2018-11-07 11:35 enych 阅读(3157) 评论(0) 推荐(0) 编辑
摘要:C# 打开另一个窗体,(模态对话框) Form1 frm= new Form1(); //创建对象 DialogResult retServer = frm.ShowDialog(); //模式对话框 if (retServer == DialogResult.OK) { InitConnectString(); } else { return; } 另一个窗体的保存按钮代码 this.Dial... 阅读全文
posted @ 2018-11-07 11:27 enych 阅读(2011) 评论(0) 推荐(0) 编辑
摘要:string str1 = "123AAA456AAAA789AAAAAAA1011"; string str2 = "123456789AAA23456789AAAA3456789AAAAAAA4567890"; string str3 = "123456788AAA23456789AAAA3456789AAAAAAA4567890"; ... 阅读全文
posted @ 2018-11-07 11:05 enych 阅读(5558) 评论(0) 推荐(0) 编辑
摘要:<html><head></head><body> <div> <div id="demo" style="overflow:auto;height:80px;width:100;position:relative" onscroll="vertical(this)"> <table border= 阅读全文
posted @ 2018-11-02 11:59 enych 阅读(1075) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示