上一页 1 ··· 3 4 5 6 7
摘要: SharePoint 2010: Howto configure Business Data Connectivity access rights English You may encounter “Access denied by Business Data Connectivity” error when trying to access External List. The reason is because External List requires External Content type ; and External Content type is using 阅读全文
posted @ 2010-12-29 11:15 Jason Li 2011 阅读(264) 评论(0) 推荐(0) 编辑
摘要: What's New in the .NET Framework 4 .NET Framework 4 Other Versions Visual Studio 2008 .NET Framework 3.0 Visual Studio 2005 This topic contains information about key features and improvements in the .NET Framework version4. This topic does not provide comprehensive information about all new featu 阅读全文
posted @ 2010-12-29 11:13 Jason Li 2011 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 1.什么是Assembly?表现形式是什么?2.什么是CLR?作用是什么?3.DotNet中的GC回收机制是怎样的?4.Struct和Class的区别?5.抽象类和接口的区别?6.String是否可以被继承?7.描述装箱和拆箱的过程。8.DotNet页面间的值传递有哪写方法?各有什么优缺点?9.在系统架构中,约定在那一层进行异常处理?10.使用哪些手段对数据库查询进行优化11.如何防止数据库注入式... 阅读全文
posted @ 2007-08-19 16:24 Jason Li 2011 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 今天用 VS 2005 写了一段Remoting的代码。运行总是报错,错误信息如下:FatalExecutionEngineError was detectedMessage: The runtime has encountered a fatal error. The address of the error was at 0x7f5350c6, on thread 0x12a0. The er... 阅读全文
posted @ 2007-08-03 19:48 Jason Li 2011 阅读(1210) 评论(0) 推荐(0) 编辑
摘要: 定义了接口IVehicle父类:Car实现了IVehicle子类:Bus继承Car总结:当创建Bus实例的时候,会先调用Car的构造函数,再调用Bus的构造函数;当声明了析构函数时,会调用Bus的析构函数,再调用Car的析构函数;Car中声明了一个Stop的虚方法,在Bus中进行重载。在Car和Bus的析构函数中调用Stop这个方法,结果都调用了Bus中的Stop方法;显示释放资源,类可以继承ID... 阅读全文
posted @ 2007-06-18 11:42 Jason Li 2011 阅读(221) 评论(0) 推荐(0) 编辑
摘要: SQL Server 2005 Books Online Maximum Capacity Specifications for SQL Server 2005 Updated: 1 February 2007 原文链接:http://msdn2.microsoft.com/en-us/library/ms143432.aspx The following tables specify the maximum sizes and numbers of various objects defined in Microsoft SQL Server 2005 components. The following table specifies the maximum sizes and numbers of various objects defined in SQL Server 2005 databases or referenced in Transact-SQL statements. The tabl 阅读全文
posted @ 2007-05-30 12:24 Jason Li 2011 阅读(1411) 评论(0) 推荐(0) 编辑
摘要: Plan for software boundaries (MOSS 2007) 原文链接:http://technet2.microsoft.com/Office/en-us/library/8dd52916-f77d-4444-b593-1f7d6f330e5f1033.mspx?mfr=true This article provides information to help you understand the tested performance and capacity limits of Microsoft Office SharePoint Server 2007, provides information about the test environment and test results, and offers guidelines for acceptable performance. Use the information in this article to determine whether your planned depl 阅读全文
posted @ 2007-05-29 14:18 Jason Li 2011 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 把数据库从SQL2000升级到SQL2005以后,原来一个生成代码的应用报错了。google了一把,原来用到的sysproperties表在SQL2005中已经不存在了。把sysproperties改成sys.extended_properties就OK了。其他的一些存储过程、系统表和关键字还是可以兼容的。 阅读全文
posted @ 2007-05-22 13:52 Jason Li 2011 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 在AD中按部门组织架构划分组织单元;安全组的设置可以很灵活,按纵向和横向划分都可以;组的存放可以选择各种容器,可以放在组织单元中,也可以放在单独划分出来的组织单元;用户只可以从属于一个OU,但是可以同时从属于多个组;OU可以用来制定策略,但是不能用于分配权限;组可以用于分配权限,但不能作为策略的容器; 阅读全文
posted @ 2007-05-22 08:29 Jason Li 2011 阅读(206) 评论(0) 推荐(0) 编辑
摘要: VS Studio可以帮助我们通过简单的拖拽生成Typed DataSet。同时自动生成了DataAdapter,更加简化了数据的访问操作。下面是我基于VS 2005编写的一个类,为基于Typed DataSet的数据访问提供了比较简单的方法。基类使用泛型,反射等方法实现了数据访问的封装。在定义实体类时,只需要继承该基类就可以实现数据的读取、保存和删除操作。 1using System; 2... 阅读全文
posted @ 2007-05-21 11:40 Jason Li 2011 阅读(259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7