上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页

2014年6月27日

Enable file editing in Visual Studio's debug mode

摘要: Visual Studio 使用及调试必知必会 http://www.cnblogs.com/luminji/p/3287728.html How do I enable file editing in Visual Studio's debug mode? http://stackover... 阅读全文

posted @ 2014-06-27 17:48 白马酒凉 阅读(93) 评论(0) 推荐(0) 编辑

2014年6月25日

SQL Server Dead Lock Log

摘要: 1 . 模拟Dead Lock Session1: begintran insertintoT1(name)values('test1') UpdateT2setname='test1' commit Session2: begintran insertintoT2(name)values(... 阅读全文

posted @ 2014-06-25 13:54 白马酒凉 阅读(197) 评论(0) 推荐(0) 编辑

2014年6月24日

Debug .NET Framework Source

摘要: 1.Microsoft Reference Source 在线source http://referencesource.microsoft.com/#System.Data.Linq 可以下载离线solution包,打开ndp.sln就可以看到全部souce 2.使用plugin,Ref1... 阅读全文

posted @ 2014-06-24 12:02 白马酒凉 阅读(133) 评论(0) 推荐(0) 编辑

2014年6月23日

SQL Server text field里面有换行符的时候copy到excel数据会散乱

摘要: 解决方法: select '"'+convert(varchar(8000),testField)+'"'astestField from testTable 这样虽然结果集里面有引号将数据括住,但copy到excel的时候会消失,数据也不会散乱 阅读全文

posted @ 2014-06-23 11:28 白马酒凉 阅读(120) 评论(0) 推荐(0) 编辑

2014年6月5日

诊断和修复Web测试记录器(Web Test Recorder)问题

摘要: http://www.cnblogs.com/oscarxie/articles/1045430.html Database LoadTest2010 script C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE... 阅读全文

posted @ 2014-06-05 10:09 白马酒凉 阅读(113) 评论(0) 推荐(0) 编辑

2014年5月22日

Can't load Microsoft.ReportViewer.ProcessingObjectModel.dll

摘要: 本机的时候是能正常看到report,但deploy到别的机器上却不行,按说从本机拷个dll过去就可以,但怎么也找不到。 原来要在cmd那里输入C:\WINDOWS\assembly\GAC_MSIL 下载reportview.exe http://www.microsoft.com/zh... 阅读全文

posted @ 2014-05-22 17:46 白马酒凉 阅读(126) 评论(0) 推荐(0) 编辑

2014年5月8日

'telnet' is not recognized as an internal or external command

摘要:  http://blog.csdn.net/lubinsu/article/details/7294870 使用telnet的时候出现如下提示:'telnet' is not recognized as an internal or external command 原因:Win7, V... 阅读全文

posted @ 2014-05-08 13:34 白马酒凉 阅读(697) 评论(0) 推荐(0) 编辑

2014年5月7日

Linq to XML - C#生成XML

摘要: 1.System.Xml.XmlDocument XML file转成字符串 string path3 = @"C:\Users\test.xml"; XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(path3); string ... 阅读全文

posted @ 2014-05-07 16:37 白马酒凉 阅读(133) 评论(0) 推荐(0) 编辑

2014年5月6日

使用StringBuilder写XML遭遇UTF-16问题

摘要:  http://www.cnblogs.com/jans2002/archive/2007/08/05/843843.html 阅读全文

posted @ 2014-05-06 12:21 白马酒凉 阅读(100) 评论(0) 推荐(0) 编辑

2014年5月5日

Error: 'The service did not respond in a timely fashion'

摘要: Windows启动时候报这个错,不应在OnStart放执行长的过程,需要开另一个线程来做才能顺利启动 Windows Services: OnStart loop - do I need to delegate? http://stackoverflow.com/questions/649935... 阅读全文

posted @ 2014-05-05 12:00 白马酒凉 阅读(353) 评论(0) 推荐(0) 编辑

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页

导航