随笔分类 - .Net
摘要:Client will get a 400 Bad Request response when the return type from the method signature does not match the type of the returned result. For example, public Object DoWork() { return 12; } Why IEnum...
阅读全文
摘要:Open Tools-->External Tools in VS2008Click "Add" to add a new toolFill the textboxes as below
阅读全文
摘要:简介 采用的是韦伯字典标准美英的真人发音 软件将英英解释和汉英解释合二为一,用户对单词有一个全面的系统的了解和记忆 有韦伯音标和我们熟悉的国际音标 具有单词的智能补全功能 批量的英文单词真人朗读,用户可以结合一些音频录制软件来录制成MP3,帮助记忆单词和练习听力 用户可以自定义单词朗读的顺序,次数,和时间间隔 软件不需要安装,拷贝即可。并且本软件不写任何注册表,真正的绿色软件 软件支持一键显示(C...
阅读全文
摘要:Long Paths in .NET, Part 2 of 3
阅读全文
摘要:让我们从BCL中的一个有趣的异常开始今天的话题:
[PathTooLongException]: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
我们的客户在bug报告里说: “路径最多只有260个字符? MS搞笑的吧. 把这个限制搞得更长一些!”. 在这里我将会对这些提交bug报告的人(很抱歉你们的bug被关成了”won’t fix”)详细解释这个问题并告诉你们我们对此所作出的努力.
阅读全文
摘要:http://atlas.asp.net/default.aspx?tabid=47&subtabid=471但是在安装时出现了一个Error Message: String cannot have zero length atlas forum上已经有人提了这个问题 但还没有答案解决的方法请看http://msmvps.com/blogs/ffagas/archive/2006/07/31/10...
阅读全文
摘要:如果你用sp_xml_preparedocument处理一个xml doc, 而这个doc里面呢, 有一个(或多个)attribute的值是另外一个比较大的xml doc(>1M), 就会有Unspecified error扔出来. 但如果该attribute的值是一个比较大的文本(>3M), 都没有问题. 这个是msxml的一个bug, 在msxml2, msxml3, msxml4 and m...
阅读全文
摘要:We can create an atlas web site once we have atlas installed. But how about use atlas in our Web Project? 1. Add reference for Microsoft.Web.Atlas.dll. Copy Microsoft.Web.Atlas.dll to \bi...
阅读全文
摘要:今天改一段code,发现ms guy这样得到一个XmlNode的Attribute: XmlNode attribute = node.Attributes.GetNamedItem("myAttribute");为什么不直接用 XmlAttribute attribute = node.Attributes["myAttribute"];于是就check了一下,发现XmlAttributeCo...
阅读全文
摘要:using System; using System.IO; using System.Xml; using System.Xml.Schema; namespace xxx.WebService { /**//// /// XsdValidator /// validate the configxml by xsd /// public...
阅读全文
摘要:Problem: 在WEB项目中使用DAAB实现DAL,访问数据访问页面,出现错误:调试信息: 异常类型:System.IO.FileNotFoundException异常信息:找不到文件或程序集名称“k9iqdxdk.dll”,或找不到它的一个依赖项。 出错堆栈: at System.Reflection.Assembly.nLoad(AssemblyName fileName, St...
阅读全文
摘要:usingSystem; namespaceConsoleApplication1.FPTest { /**//// ///FPTest的摘要说明。 /// publicclassFPTest { publicstaticvoidMain(){ FPTestt=newFPTes...
阅读全文