01 2009 档案

posted @ 2009-01-21 00:41 灵动生活 阅读(2519) | 评论 (2) 编辑
摘要: 2008年最受欢迎的资源TOP100 From CSDN阅读全文
posted @ 2009-01-16 18:50 灵动生活 阅读(535) | 评论 (0) 编辑
摘要: 关于注释这个问题,之前没用SQL语句去添加过,都是在Enterprise Manager里面添加的:( 查了一下资料,得知Microsoft在SQL Server™ 2000中引入了扩展属性,用户可在各种数据库对象上定义这些属性。这些扩展属性可用于存储与数据库对象有关的应用程序或站点特有的信息。阅读全文
posted @ 2009-01-12 09:09 灵动生活 阅读(583) | 评论 (0) 编辑
posted @ 2009-01-08 19:52 灵动生活 阅读(6490) | 评论 (2) 编辑
摘要: 下面要解决的问题如下: 1.如何在JavaScript访问C#函数?   2.如何在JavaScript访问C#变量?   3.如何在C#中访问JavaScript的已有变量?   4.如何在C#中访问JavaScript函数?阅读全文
posted @ 2009-01-08 00:21 灵动生活 阅读(2502) | 评论 (6) 编辑
摘要: This code sample demonstrates how to copy class properties from one class to another even if they are not the same type. It also demonstrates how to validate a class's required properties dynamically. Both of these can increase your coding productivity especially when dealing with web service versions of your business classes.阅读全文
posted @ 2009-01-04 20:35 灵动生活 阅读(517) | 评论 (0) 编辑
摘要: 基本思路 利用反射机制将DataTable的字段与自定义类型的公开属性互相赋值。注意:从DataSet到IList的转换,自定义类型的公开属性必须与DataTable中的字段名称一致,才能到达想要的结果。建议DataTable的定义从数据库来,自定义类型用O/R Mapping的方式获得。 阅读全文
posted @ 2009-01-04 13:01 灵动生活 阅读(1227) | 评论 (0) 编辑