摘要: [转载]jQuery对象VS DOM对象 2009/06/03 11:30 这文章只是很有可能帮助,没想到最后。。。还不是用这些方法解决的。有些绕圈子,但在绕的时候学到不少东西。主要是要 参测试出问题在哪。喜一个!耶~~~ jQuery对象和DOM对象; jQuery对象就是通过jQuery包装DOM对象后产生的对象。jQuery对象是jQuery独有的,其可以使用jQuery里的方法,但是... 阅读全文
posted @ 2010-05-14 21:49 JerryZhao 阅读(261) 评论(0) 推荐(1) 编辑
摘要: [http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1169787&SiteID=17] Here's a sample matrix: Men Women Total Full Professor 36 12 ... 阅读全文
posted @ 2008-04-22 10:35 JerryZhao 阅读(494) 评论(0) 推荐(0) 编辑
摘要: http://msdn2.microsoft.com/en-us/library/ms889558.aspx Windows Mobile Version 5.0 SDK Creating an .ini File for the Application Manager Send Feedback The .ini file contains information that register... 阅读全文
posted @ 2008-02-28 06:17 JerryZhao 阅读(617) 评论(0) 推荐(0) 编辑
摘要: http://msdn2.microsoft.com/en-us/library/ms838273.aspx Pocket PC (General) Technical Articles Developing and Deploying Pocket PC Setup Applications Ralph Arvesen Vertigo Software, Inc. March 2003 ... 阅读全文
posted @ 2008-02-28 06:07 JerryZhao 阅读(728) 评论(0) 推荐(0) 编辑
摘要: http://www.pluralsight.com/blogs/jimw/archive/2006/09/11/37653.aspx More on device app installs - Installing a Windows Mobile device application from a desktop MSI Following my post a few weeks ago A... 阅读全文
posted @ 2008-02-28 06:04 JerryZhao 阅读(557) 评论(0) 推荐(0) 编辑
摘要: http://msdn2.microsoft.com/en-us/library/aa446504.aspx .NET Compact Framework Deploying .NET Compact Framework 2.0 Applications with .cab and .msi Files Christopher Tacke OpenNETCF Consulting Dece... 阅读全文
posted @ 2008-02-28 05:34 JerryZhao 阅读(1372) 评论(1) 推荐(0) 编辑
摘要: http://channel9.msdn.com/wiki/default.aspx/MobileDeveloper.InstallingMultipleCABFiles Installing Multiple CAB Files Summary: Installing multiple CAB files from a single CAB file Often a mobile dev... 阅读全文
posted @ 2008-02-28 05:33 JerryZhao 阅读(761) 评论(1) 推荐(0) 编辑
摘要: In reply to my first post on WiX, Josh asked if I knew how to restart IIS using WiX. As a matter of fact I do and here is the code. I had to create a new post as my previous post has reached the ch... 阅读全文
posted @ 2008-02-07 13:57 JerryZhao 阅读(910) 评论(1) 推荐(0) 编辑
摘要: http://blog.wharton.com.au/2007/06/windows-installer-xml-wix-30-snippets.html Windows Installer XML (WiX) 3.0 Snippets One of my tasks at DITR is the creation and refining of WiX packages. We ar... 阅读全文
posted @ 2008-02-07 13:49 JerryZhao 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: http://www.ayende.com/Blog/archive/7842.aspx I tried to get an overview of all the posts I wrote so far about Castle Demo App, and I got a little lost, and I guess that this isn't only my problem, so ... 阅读全文
posted @ 2008-01-30 12:24 JerryZhao 阅读(439) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=243 有意无意的,很多文章都没有提及 ActiveRecordMediator 。 ActiveRecordMediator最大的用途是:即便你的实体类不是继承自 ActiveRecordBase (不推荐这么做),它也可以进行同等的创建、查找等操作;另外这个类实现了很多常用的方法,我们直接使用它就没必要为每个实体类写... 阅读全文
posted @ 2008-01-23 07:38 JerryZhao 阅读(699) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=242 在ActiveRecord中级联操作为我们带来很多方便,但是一些细节地方需要注意。 [ActiveRecord("Users")] public class User : ActiveRecordBase { public User() { } public User(string name) :... 阅读全文
posted @ 2008-01-23 07:36 JerryZhao 阅读(440) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=244 ActiveRecord 支持继承体系,我们看看几种不同的实现方式。 1. 无关联继承 public class Person { private int id; [PrimaryKey(PrimaryKeyType.Identity)] public int Id { get { re... 阅读全文
posted @ 2008-01-23 07:21 JerryZhao 阅读(625) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=271 ActiveRecord 的多数据库配置基本沿袭了 NHibernate 的思想,只不过在配置文件结构上作了些调整。 1. 采用继承方式,归纳使用同一数据库的类型。比如 A、B、C、D、E 中 A、B连接到数据库Test1,C、D连接到Test2,而E连接到缺省的Test,那么具体的代码就会是下面这种方式。 pu... 阅读全文
posted @ 2008-01-23 06:58 JerryZhao 阅读(746) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=487 Castle ActiveRecord 通过特性处理数据表关联关系。 Many-to-one: BelongsToAttribute One-to-many: HasManyAttribute Many-to-many: HasAndBelongsToManyAttribute 1. O... 阅读全文
posted @ 2008-01-23 06:52 JerryZhao 阅读(436) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=485 在业务设计中,对数据往往有确定的格式限制。我们通常的做法是在用户输入界面做这些处理,不过 Castle AR 为我们提供了另外一个备选方案。当我们无法确定类库或服务调用者是否会进行格式检查时,这个功能就非常实用了。要实现这个功能需要 ActiveRecordValidationBase / ActiveRecord... 阅读全文
posted @ 2008-01-23 06:28 JerryZhao 阅读(498) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=484 Castle ActiveRecord 对于数据实体的设计非常灵活,大量特性的使用,使得其代码方式非常类似 WCF 的声明式编程。 1. 实体类型 通常我们会选择从 ActiveRecordBase (或其泛型版本) 继承实体类型,它几乎提供了实体所需的所有操作方法。 [Serializable] pub... 阅读全文
posted @ 2008-01-23 06:12 JerryZhao 阅读(749) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=483 以前研究过一阵 ORM,基于某些理由,比较喜欢 XPO 和 Castle ActiveRecord。原因不外乎以下几点: "Class to DB",我觉得 ORM 最重要的目的是用一种简便的方式来存储对象。我们对业务分析的重点是对象,而不会优先考虑数据库设计。XPO 和 Castle AR 在这方面做得... 阅读全文
posted @ 2008-01-23 06:00 JerryZhao 阅读(609) 评论(0) 推荐(0) 编辑
摘要: http://www.rainsts.net/article.asp?id=486 ActiveRecord 的 CRUD 操作基本上都是由 ActiveRecordBase 的静态方法完成。其实例(含子类型)方法,以及 ActiveRecordMediator 只是对这些静态方法的包装调用而已。当然,ActiveRecordBase 方法又是对 NHibernate Session 方法的包装。... 阅读全文
posted @ 2008-01-23 05:43 JerryZhao 阅读(556) 评论(0) 推荐(0) 编辑
摘要: NHibernateDataSource: A DataSourceControl for ASP.NET 2.0 http://www.codeproject.com/useritems/NHibernateDataSource.asp Download source code and demo - 917.8 Kb Introduction Background We've u... 阅读全文
posted @ 2007-11-06 20:05 JerryZhao 阅读(781) 评论(0) 推荐(0) 编辑
摘要: Data Source Controls Summary http://www.nikhilk.net/DataSourceControlsSummary.aspx A summary for data source control series, a screenshot, and finally (most importantly) the source code for the data s... 阅读全文
posted @ 2007-11-06 19:57 JerryZhao 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 11 Visual Studio 2005 IDE Tips and Tricks to Make You a More Productive Developer http://www.chinhdo.com/chinh/blog/20070920/top-11-visual-studio-2005-ide-tips-and-tricks-to-make-you-a-more-productive... 阅读全文
posted @ 2007-10-04 15:11 JerryZhao 阅读(729) 评论(0) 推荐(0) 编辑
摘要: http://weblogs.asp.net/scottgu/archive/2006/12/22/recipe-deploying-a-sql-database-to-a-remote-hosting-environment-part-1.aspx Scenario: You finish building a great ASP.NET application, have everythi... 阅读全文
posted @ 2007-10-03 09:24 JerryZhao 阅读(509) 评论(0) 推荐(0) 编辑
摘要: http://blogs.msdn.com/ricom/archive/2004/03/12/performance-quiz-1-of-a-series.aspx Performance Quiz #1 (of a series?) Recently there was a discussion on one of our internal email aliases in which thi... 阅读全文
posted @ 2007-09-26 13:17 JerryZhao 阅读(422) 评论(0) 推荐(0) 编辑
摘要: http://voneinem-windbg.blogspot.com/2007/03/creating-and-analyzing-minidumps-in-net.html Creating and analyzing minidumps in .NET production applications Preface: Identifying the source of an erro... 阅读全文
posted @ 2007-09-19 08:36 JerryZhao 阅读(695) 评论(0) 推荐(0) 编辑
摘要: http://blogs.msdn.com/rextang/archive/2007/07/24/4026494.aspx Debugging managed code using WinDbg and SOS.dll This should be must tools and skills that every .net developer needs to learn, to use ... 阅读全文
posted @ 2007-09-19 07:37 JerryZhao 阅读(722) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/cs/design/busnessobjectgenerator.asp Download source files - 77.9 Kb Introduction One of the biggest issues a developer faces when developing a large application, is... 阅读全文
posted @ 2007-09-13 19:48 JerryZhao 阅读(472) 评论(0) 推荐(0) 编辑
摘要: url:http://www.ondotnet.com/pub/a/dotnet/2003/06/16/log4net.html Using log4net by Nauman Leghari 06/16/2003 Introduction Logging is an essential tool in every developer's arsenal. It helps the deve... 阅读全文
posted @ 2007-09-10 16:33 JerryZhao 阅读(632) 评论(0) 推荐(0) 编辑
摘要: http://blog.joycode.com/sumtec/articles/25292.aspx .NET CF杂谈系列(二)—— 拿起你的苍蝇拍 2004年6月22日 10:50 - (阅读:1950;评论:2) --> .NET CF 1.0 里面有好多的臭虫啊!简直就是多不胜数——为了引起你的注意,我只好进行一定的夸大了。事实上有多少的错误大家可以看看.NET CF 1.0... 阅读全文
posted @ 2007-08-31 09:07 JerryZhao 阅读(531) 评论(0) 推荐(0) 编辑
摘要: http://www.christec.co.nz/blog/archives/42 Manage soft input panel (SIP) One final finishing touch to Windows Mobile applications is the proper handling of the Software-based Input Panel (SIP), this ... 阅读全文
posted @ 2007-08-30 22:03 JerryZhao 阅读(1389) 评论(0) 推荐(0) 编辑
摘要: .NET Compact Framework Improving Microsoft .NET Compact Framework-based Application Form Load Performance ... 阅读全文
posted @ 2007-08-29 09:23 JerryZhao 阅读(621) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/useritems/smartcodegeneratorconsole.asp Download source code - 3,006.3 KB... 阅读全文
posted @ 2007-08-27 20:54 JerryZhao 阅读(595) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/aspnet/NHibernateBestPractices.asp Download Basic NHibernate Sample - 1,477.9 KB Download "Enterprise" NHibernate Sample - 2,168.9 KB Preface to the 1.2nd Edition... 阅读全文
posted @ 2007-08-27 18:33 JerryZhao 阅读(565) 评论(0) 推荐(0) 编辑
摘要: Download NHibernate.zip - 524.3 KB Download Web Application Project Setup ... 阅读全文
posted @ 2007-08-27 17:13 JerryZhao 阅读(922) 评论(1) 推荐(0) 编辑
摘要: http://www.codeproject.com/useritems/SCTemplates.asp Download Smart Code Setup, includ... 阅读全文
posted @ 2007-08-27 17:10 JerryZhao 阅读(966) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/useritems/SmartCode-Code_Generation.asp Download Setup, include source co... 阅读全文
posted @ 2007-08-27 16:37 JerryZhao 阅读(1159) 评论(1) 推荐(0) 编辑
摘要: http://www.codeproject.com/useritems/TDD_and_SqlCE.asp Download SamplesSqlCe.zip - 610.5 KB Introduction This article demonstrates how to use SQL Compact Edition to perform database unit testin... 阅读全文
posted @ 2007-08-26 12:15 JerryZhao 阅读(557) 评论(0) 推荐(0) 编辑
摘要: Reporting Services has a notion of a user session. This is not the same as ASP.Net's notion of a user session, and in fact the two are completely orthogonal to each other. SSRS's session maintains information about which report a user is looking at, the data that is in that report (we call this a snapshot), the interactivity state (what items are shown/hidden), parameter state, etc... These sessions are aged out based on the last time they were accessed. For most scenarios where you use the 阅读全文
posted @ 2007-08-21 08:02 JerryZhao 阅读(568) 评论(0) 推荐(0) 编辑
摘要: Partitioned Tables in SQL Server 2005 16 April 2007 by Nigel Rivett Partitioned Tables in SQL Server 2005 Partitioned tables are a new feature available in SQL Server version 2005, aimed mainly at i... 阅读全文
posted @ 2007-08-13 12:34 JerryZhao 阅读(780) 评论(0) 推荐(0) 编辑
摘要: Visual Studio Keyboard Shortcut Posters & Other 'Cheat Sheet' Links Tim Heuer blogged this morning about some Visual Studio Shortcut 'Posters' that are available from Microsoft as PDF, and I thought... 阅读全文
posted @ 2007-07-05 08:18 JerryZhao 阅读(447) 评论(0) 推荐(0) 编辑