上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: 安装Windows Phone 8 SDK,新建一个Windows Phone App,加载XAML设计器失败,同时智能提示无效。但新建一个WPF Application没有问题。设计器错误如下:System.UnauthorizedAccessExceptionAccess is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))at Microsoft.Expression.DesignHost.Isolation.Remoting.STAMarshaler.WaitForCompletion(NestedCallCo 阅读全文
posted @ 2012-11-07 11:51 junchu25 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 开发人员反映同一个功能在开发服务器正常、测试服务器在满足一定操作条件后部分Action的model bind失败,之后无论如何操作直至应用程序池重启才恢复正常。查看异常日志如下:Exception information: Exception type: ArgumentException ... 阅读全文
posted @ 2012-10-28 11:18 junchu25 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 开发人员反映原有一个功能在点击修改提交表单后,浏览器就无响应,除非关闭。之前开发、测试服务器所做的更新只有安装了.NET Framework 4.5,由于之前博客园的dudu也碰到过相同类似问题(http://www.cnblogs.com/dudu/archive/2012/09/14/ie_mv... 阅读全文
posted @ 2012-10-28 10:52 junchu25 阅读(900) 评论(0) 推荐(0) 编辑
摘要: NuGet是一个开放性的组件发布、更新平台。它允许第三方自定义Package source,对于不同开发团队之间的组件版本获取将变的更为轻松。新建一个ASP.NET Empty Web Application,选中项目右键 -> Manage NuGet Packages,在Online -> NuGet official package source中搜索NuGet.Server:安装完成后,在IIS中默认浏览,站点会返回一个Package source的地址,比如:http://localhost:7004/nuget。打开Visual Studio -> 顶部菜单 -& 阅读全文
posted @ 2012-10-26 23:41 junchu25 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 之前基于WPF 3.0开发的应用程序有一个DelegateCommand类型,在升级至WPF 4.0后发现CanExecuteChanged事件产生通知后对应的UI并未产生变化。 1 /// <summary> 2 /// 委托命令 3 /// </summary> 4 public class DelegateCommand<T> : ICommand 5 { 6 /// <summary> 7 /// 命令执行前事件 8 /// </summary> 9 public event EventHandler<CancelEve 阅读全文
posted @ 2012-10-22 15:10 junchu25 阅读(4852) 评论(0) 推荐(0) 编辑
摘要: 迁移服务器发现站点下使用uploadify控件上传提示-Failed,跟踪onUploadError事件,查看errorMsg参数提示:2156 SecurityError Error #2156 null。原来是Flash出于安全问题屏蔽了当前正在使用的端口(104)。在Adobe的kb -url-requests-certain-ports-throw下可以查看被屏蔽的端口列表:http://helpx.adobe.com/flash/kb/url-requests-certain-ports-throw.html。 阅读全文
posted @ 2012-10-20 15:02 junchu25 阅读(991) 评论(0) 推荐(0) 编辑
摘要: 编写项目Build Events的Pre-build、Post-build时如果使用copy命令必须为绝对路径,比如预定义宏OutDir,编写如下命令:copy "$(SolutionDir)BuildLibrary" "$(OutDir)"得到exit code 1的提示,因为$(OutDir)返回相对路径,比如:“Bin\Debug\”。相对路径无法成功执行,只需要修改为如下命令:copy "$(SolutionDir)BuildLibrary" "$(TargetDir)" 阅读全文
posted @ 2012-09-22 00:15 junchu25 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 由于某种架构的需要,许多视图(.cshtml)被分布到不同的类库项目中,在项目编译时通过post-build复制到启动项的指定目录。部分开发人员在一些项目中修改视图时出现无法智能提示。Views文件夹下有Web.config,当打开某个.cshtml文件出现提示:“ASP.NET runtime e... 阅读全文
posted @ 2012-09-21 23:44 junchu25 阅读(2134) 评论(0) 推荐(1) 编辑
摘要: 基于TFS管理的解决方案打开时提示:“some of the properties associated with the solution could not be read”,并不影响项目加载,Output Window也没有多余提示。用记事本打开解决方案文件,查找“GlobalSection(TeamFoundationVersionControl)”,你会发现多处定义,只保留最顶部,删除重复定义。 阅读全文
posted @ 2012-09-17 20:36 junchu25 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 开发人员提交一个dump文件(Windows Server 2008 R2),当前调试环境Windows Server 2012,加载sos.dl执行~* e !clrstack,提示如下错误:Failed to load data access DLL, 0x80004005Verify that 1) you have a recent build of the debugger (6.2.14 or newer) 2) the file mscordacwks.dll that matches your version of clr.dll is ... 阅读全文
posted @ 2012-09-04 15:58 junchu25 阅读(4561) 评论(2) 推荐(1) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页