摘要: 一定要注意代码的core版本和服务器运行core的版本要一致 https://www.microsoft.com/net/download/dotnet-core/2.0 阅读全文
posted @ 2018-07-22 15:40 奥巴马说你代码写的好 阅读(325) 评论(0) 推荐(0) 编辑
摘要: at System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 hr) at System.Security.Cryptography.X509Certificates.X509Util 阅读全文
posted @ 2017-03-22 15:42 奥巴马说你代码写的好 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 首先在配置文件上加红色字体这个配置 用来打印错误信息,再根据错误信息来处理 <system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules runAllManagedModulesForAl 阅读全文
posted @ 2016-11-08 16:31 奥巴马说你代码写的好 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 在执行顺序上href是低于onclick的,那么这个会造成什么影响呢b上面的代码会出现冒泡事件,就是我们点击a的时候div的点击事件会同时触发,这个时候我们会用event.stopPropagation();来阻止冒泡;不过,要是你的b()事件是写在a标签的href中,冒泡事件优先走onclick,... 阅读全文
posted @ 2015-12-16 11:14 奥巴马说你代码写的好 阅读(259) 评论(0) 推荐(0) 编辑
摘要: IE8一下只要有文件上传只能用flash,不然是模拟iframe来实现的 回调不回来 阅读全文
posted @ 2015-12-07 13:45 奥巴马说你代码写的好 阅读(144) 评论(0) 推荐(0) 编辑
摘要: $("#button").on("click", function () { // top.location.location.href = 'http://18.ifeng.com/up/'; try{top.location.host}catch(exp){top.location="http... 阅读全文
posted @ 2015-11-30 09:45 奥巴马说你代码写的好 阅读(530) 评论(0) 推荐(0) 编辑
摘要: IE6不能用class命名!IE6不能用class命名!IE6不能用class命名! 重要的事情说3遍 阅读全文
posted @ 2015-11-11 15:01 奥巴马说你代码写的好 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 后台会返回null文本 如果直接拼接 不仅仅格式问题 前台会显示null 如果是图片 用fiddle抓取 还会发现你请求了一个带域名/null的接口 所以要把null格式化为空文本 阅读全文
posted @ 2015-09-18 17:15 奥巴马说你代码写的好 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 1、 CronTrigger时间格式配置说明CronTrigger配置格式:格式: [秒] [分] [小时] [日] [月] [周] [年]序号说明是否必填允许填写的值允许的通配符1秒是0-59, - * /2分是0-59, - * /3小时是0-23, - * /4日是1-31, - * ? / ... 阅读全文
posted @ 2015-09-15 16:12 奥巴马说你代码写的好 阅读(260) 评论(0) 推荐(0) 编辑
摘要: text-overflow: clip|ellipsis|string;值描述测试clip修剪文本。测试ellipsis显示省略符号来代表被修剪的文本。测试string使用给定的字符串来代表被修剪的文本。 阅读全文
posted @ 2015-09-08 17:26 奥巴马说你代码写的好 阅读(125) 评论(0) 推荐(0) 编辑