摘要:
当View上using一些从probing privatePath加载的程序集,运行时会提示无法找到对应程序集。 原因是由于DefaultControllerFactory内部使用BuildManager关系,除了以代码方式将probing privatePath下指定的程序集... 阅读全文
摘要:
受html标签影响,超链接也会被变成文本域(HYPERLINK)。当遍历文本域进行替换之前如果预存了文本域的数量(Count/Length/etc.)将导致遗漏。 阅读全文
摘要:
默认Attach to选择了Automatically determine the type of code to debug,显示Native Code。但附加进程到iexplore.exe断点无法命中。解决方法是手动选择Code Type Natvie。 阅读全文
摘要:
Ubuntu 14.04.1下运行Terminal,安装Pipelight输入以下命令:sudo add-apt-repository ppa:pipelight/stablesudo apt-get updatesudo apt-get install --install-recommends p... 阅读全文
摘要:
之前一直用的Lumia 925,Bing lock screen每天都会更换。这几天换了Lumia 930,同步了账号相关的设置,发现Bing lock screen不再每天更换。尝试重启、使用cellular data等几种方式都无效果。以下操作至少本人有效仅供参考:Device:Lumia 93... 阅读全文
摘要:
Log Parser Studio查看IIS日志发现调用SPClaimsUtility.AuthenticateFormsUser的部分有time-taken在15秒左右的多个响应,查看call stack如下:Child-SP RetAddr Call Site0... 阅读全文
摘要:
我安装了WSE 2.0 SP3,Setup Type选择Runtime。如果想要让Visual Studio 2005以上版本集成WSE需稍费周折,默认集成Visual Studio 2005。1、引用Microsoft.Web.Services2.dll。2、修改Visual Studio自动生成... 阅读全文
摘要:
Visual Studio 2013安装完Update 3后启动立刻crash,异常信息为:System.InvalidOperationException was unhandledMessage: An unhandled exception of type 'System.InvalidOpe... 阅读全文
摘要:
将FtpWebRequest的KeepAlive设置为true。return Return( new Uri(ftpPath + fileName), request => { ... 阅读全文
摘要:
1、创建对应configuration的App.config文件,比如:App.Debug.config、App.Release.config。2、编辑项目文件,将App.*.config文件的Build Action修改为Content,参考如下: App.config ... 阅读全文