2014年3月6日
摘要: 网上的解决方案是新建一个2的文件夹,我试了N多次都没用。后来修复了一下framework2.0,问题解决 阅读全文
posted @ 2014-03-06 11:28 陈谟 阅读(2207) 评论(0) 推荐(0) 编辑
  2014年1月17日
摘要: 引用:using System.Text;using System.IO;读:TextBox1.Text=File.ReadAllText("d:/b.txt",Encoding.Default);写:File.WriteAllText("d:/a.txt",TextBox1.Text,Encoding.Default);追加:File.AppendAllText("d:/a.txt",TextBox1.Text,Encoding.Default); 阅读全文
posted @ 2014-01-17 18:26 陈谟 阅读(177) 评论(0) 推荐(0) 编辑
  2013年11月25日
摘要: 只需要在webConfig中加入如果还不行,再将要发布的网站文件夹中加入一个权限Everyone再把下面的全部勾上。再在IIS7中运行看看。。。 阅读全文
posted @ 2013-11-25 21:14 陈谟 阅读(349) 评论(0) 推荐(0) 编辑
  2013年10月17日
摘要: editor-config.js:下面这一段默认是注释掉的,需要的时候删除注释,添加字体。JavaScript code?1234567891011121314,'fontfamily':[{label:'',name:'songti',val:'宋体,SimSun'},{label:'',name:'kaiti',val:'楷体,楷体_GB2312,SimKai'},{label:'',name:'yahei',val:'微软雅黑,Micro 阅读全文
posted @ 2013-10-17 15:02 陈谟 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: 看看浏览器中有没有相同名字的窗口打开,有的话把它关掉。删除这个数据库,再新建打开。 阅读全文
posted @ 2013-10-17 14:58 陈谟 阅读(208) 评论(0) 推荐(0) 编辑
摘要: chrome的webSQL本地数据存在这个目录下:C:\Users\你的用户名\AppData\Local\Google\Chrome\User Data\Default\databases文件夹,里面一般会有file__0等类似的文件夹,可以用sqlite打开来看看。firefox:C:\Users\你的用户名\AppData\Roaming\Mozilla\Firefox\Profiles\9f4bsk27.default\indexedDB 阅读全文
posted @ 2013-10-17 14:57 陈谟 阅读(4678) 评论(0) 推荐(0) 编辑
摘要: 系统找不到指定的路径。 (异常来自 HRESULT:0x80070003) Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.DirectoryNotFoundException: 系统找不到指定 阅读全文
posted @ 2013-10-17 14:50 陈谟 阅读(9037) 评论(0) 推荐(0) 编辑
  2013年6月5日
摘要: ASP.NET MVC 此安装不支持该项目类型解决方法打开 .csproject 文件 在 <ProjectTypeGuids>中的三个GUID的前两个修改为: {F85E285D-A4E0-4152-9332-AB1D724D3325};{349c5851-65df-11da-9384-00065b846f21}; 后面还有一个 GUID 是你项目的GUID 不用改。 阅读全文
posted @ 2013-06-05 16:11 陈谟 阅读(166) 评论(0) 推荐(0) 编辑