摘要:
前几天我的vs2010突然不能调试了。后来找了很多的解决方案都不能解决问题。1. 删除所有的bin, debug2. 重建工程。3. 重新安装Silverlight的开发包。还是不行。最后是删除了C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files下面的所有临时文件。重新打开vs2010终于可以调试了。这个问题折腾了半天的时间。 阅读全文
摘要:
http://slide.news.sina.com.cn/h/slide_1_705_16380.html?img=16380#p=1 阅读全文
摘要:
select count(*)from sys.databases a inner join sys.syslogins b on a.owner_sid = b.sidwhere b.[name] = 'PromisUser' 阅读全文
摘要:
IIS 6.0中添加.xaml application/xaml+xml.xap application/x-silverlight-app 阅读全文
摘要:
http://blog.csdn.net/red_stone/archive/2009/06/22/4288029.aspx 阅读全文
摘要:
http://sd.csdn.net/a/20100908/279219.html 阅读全文
摘要:
1. AspNetCompatibilityRequirements设置这个是为了WCF走ASP.NET管线,能够获取到asp.net上下文信息。 如: HttpContext.Current对应于这个设置,在web.config的<system.serviceModel>中需要加上<serviceHostingEnvironment aspNetCompatibilityEnabled="true"> 阅读全文
摘要:
进入about:config.修改dom.ipc.plugins.enabled.npctrl.dll,把它由true改成false重启Firefox就可以调试了。 阅读全文
摘要:
水晶报表安装在windows 7上时,错误提示: The Report Application Server service depends the following service: NtLmSsp. This service might not be installed.后来我发现把依赖关系中的NtLmSsp服务删除就可以了。 阅读全文
摘要:
公开课连接:http://academicearth.org 阅读全文
摘要:
今天我需要刻录一张系统盘。在网上找了很多的资料才刻录成功。记录一下。1. 首先制作iso镜像文件。使用nLite软件。下面的地址里面有详细的使用方法:http://hi.baidu.com/249374471/blog/item/ea98d088c2adc296a5c27215.html2. 刻录盘。使用nero软件。 选择镜像文件刻录就可以了。 阅读全文
摘要:
关于iframe的src值的设置。1. src="www.xxx.com"2. src="javascript:fun();"当设置src为javascript函数时,这个函数是主窗体的函数时:src="javascript:window.parent.fun();" 阅读全文
摘要:
今天写代码使用FindControl查找用户控件,怎么也找不到,后来发现是应为使用masterpage的原因。解决办法是:this.Master.FindControl("masterpage里面的ContentPlaceHolder的id").FindControl("用户控件id"); 阅读全文