上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 19 下一页
摘要: public class WaitFormService { public static void CreateWaitForm(string message) { WaitFormService.Instance.CreateForm(message); } public static void ... 阅读全文
posted @ 2017-08-11 16:58 会弹猫的吉他 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 在webconfig里面加上 <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> <add name="Access-Control-Allow-Headers" value="Con 阅读全文
posted @ 2017-08-11 10:37 会弹猫的吉他 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 运行CMDicacls c:\ /setintegritylevel M 阅读全文
posted @ 2017-08-07 15:27 会弹猫的吉他 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 今天在win2008+IIS7.5的环境中部署WCF服务后,一直出现无法打开的页面。具体错误信息如下: HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效。 详细错误信息 模块 DynamicCompressionModule 通知 SendResponse 处理程序 StaticFile 错误代码 0x8007007e... 阅读全文
posted @ 2017-08-02 12:56 会弹猫的吉他 阅读(395) 评论(0) 推荐(0) 编辑
摘要: HttpContext.Current.Server.MapPath("bin/20170220.crt") AppDomain.CurrentDomain.BaseDirectory 阅读全文
posted @ 2017-07-27 16:48 会弹猫的吉他 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 一、IList 现在我们直接创建一个List集合,然后绑定 二、Dictionary 不能直接绑定,需要借助类BindingSource才可以完成绑定 三、数据集 取值: 阅读全文
posted @ 2017-07-21 15:05 会弹猫的吉他 阅读(306) 评论(0) 推荐(0) 编辑
摘要: DateTime t1 = Convert.ToDateTime("2012-08-31"); DateTime t2 = Convert.ToDateTime("2017-07-31"); int day = Math.Abs(((TimeSpan)(t1 - t2)).Days); int year = day / 36... 阅读全文
posted @ 2017-07-21 11:04 会弹猫的吉他 阅读(132) 评论(0) 推荐(0) 编辑
摘要: var ltCode = from item in psw.VehicleInsuranceItem select item.Code; string code = string.Join("|", ltCode.ToArray()); string 转List List ltCodes = new List(System.Text.RegularExpressions.Regex.Split... 阅读全文
posted @ 2017-06-28 11:56 会弹猫的吉他 阅读(1730) 评论(0) 推荐(0) 编辑
摘要: 1.Imerge下载地址:https://www.microsoft.com/en-us/download/details.aspx?id=17630 2.场景:C盘有2个dll,分别为: C:\A.dll ,C:\B.dll 合并为C:\C.dll 3.ILMerge安装到C盘的路径为:C:\Pr 阅读全文
posted @ 2017-05-19 12:15 会弹猫的吉他 阅读(419) 评论(0) 推荐(1) 编辑
摘要: private void Lba_IE_Form_FormClosing(object sender, FormClosingEventArgs e) { if (MessageBox.Show("确实要退出服务程序吗?", "退出程序", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == Di... 阅读全文
posted @ 2017-05-11 11:44 会弹猫的吉他 阅读(278) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 19 下一页