摘要:
.net应用程序安装部署时报异常 Error 1001. 在初始化安装时发生异常 System.BadImageFormatException:未能加载文件或程序集 的解决办法 阅读全文
摘要:
C# 获取文件名及扩展名 string aFirstName = aFile.Substring(aFile.LastIndexOf("\\") + 1, (aFile.LastIndexOf(".") - aFile.LastIndexOf("\\") - 1)); //文件名string aLa 阅读全文
摘要:
//添加窗口关闭事件委托 在窗口关闭事件中处理 private void TestForm_FormClosing(object sender, FormClosingEventArgs e) { switch (e.CloseReason) { //应用程序要求关闭窗口 case CloseRea 阅读全文
摘要:
项目中有个需求,数据加载完成后,默认模拟点击某个元素节点(选中某个元素节点)并触发事件 $('.course_list dd').on('click', function () { //取当前节点的某个属性值。 var id = $(this).attr('data-id'); //处理其他业务 } 阅读全文
摘要:
在.net 4.0环境下使用sqlite时报异常 混合模式程序集是针对“v2.0.50727”版的运行时生成的,在没有配置其他信息的情况下,无法在 4.0 运行时中加载该程序集其调用的方法是从sqlite数据库中获取原来已经使用过的数据库连接,当时也没注意,就是准备设断点然后单步调试,结果竟然是断点 阅读全文
摘要:
CEF3 HTML5 audio标签 为什么不能播放mp3格式的音频文件 原因略。 解决方法: 找一个最新版的chrome ,我用的是24版本。路径 C:\Documents and Settings\guo\Local Settings\Application Data\Google\Chrome 阅读全文
摘要:
当我试图将一个完整的本地路径的字符串串(如:c:\\aaa\\数学题\\三一班\\ea15ae66-d5cd-4244-87e4-fcf97b06b407.jpg)encodeURL之后当做一个页面参数传递给C#的时候;JSON 在解析的时候,通过HttpUtility.UrlDecode(d.re 阅读全文
摘要:
This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms 阅读全文