carolhaozi
用户名: carolhaozi
积分: 5,325.1
最近访问: 158 天, 8 小时, 57 分钟
注册时间: 16 April, 2009
9eFish
atom rss
1
臭虫

CodeProject: A cool utility to convert XML schemas to classes.

carolhaozicarolhaozi 发表于 158 天, 8 小时, 57 分钟 之前
Wednesday, October 14, 2009 1:47:55 AM GMT Monday, October 05, 2009 5:41:19 AM GMT
Download tool only - 138 KBDownload Source code - 994 KB Introduction I started writing this application some time ago when I was involved in a project with a massive use of XML. What this application does is basically replicate the features of the XSD tool by Microsoft, but with some additional nice features.Background The core functionalities of the application are written leveraging the features of XML and the CodeDom of the .NET framework. There are some options that can be quite useful, like auto... (more)
类别: Foundation | 点击: 0 | 评论 | | 源: www.codeproject.com
标签: convert XML schemas to classes
1
臭虫

.NET - Some Common Operations using LINQ To XML - Part III

carolhaozicarolhaozi 发表于 158 天, 9 小时 之前
Wednesday, October 14, 2009 1:47:55 AM GMT Monday, October 05, 2009 5:38:19 AM GMT
In this article, we will explore some common ‘How Do I’ kind of examples using LINQ to XML. This article is the final part of our 3-part LINQ to XML series. I assume you are familiar with LINQ. If not, you can start off with LINQ to XML by checking some tutorials at Getting Ready for .NET 3.5 and LINQ – Exploring C# 3.0 – Part I and over here for VB.NET. (more)
类别: Language | 点击: 1 | 评论 | | 源: www.dotnetcurry.com
标签: linq to xml
1
臭虫

.NET - Some Common Operations using LINQ To XML - Part II

carolhaozicarolhaozi 发表于 158 天, 9 小时, 1 分钟 之前
Wednesday, October 14, 2009 1:47:55 AM GMT Monday, October 05, 2009 5:36:54 AM GMT
In this article, we will explore some common ‘How Do I’ kind of examples using LINQ to XML. This article is the Part II of the 3-part LINQ to XML series. I hope you have read the previous article Some Common Operations using LINQ To XML - Part I. I assume you are familiar with LINQ. If not, you can start off with LINQ to XML by checking some tutorials at Getting Ready for .NET 3.5 and LINQ – Exploring C# 3.0 – Part I and over here. (more)
类别: Language | 点击: 0 | 评论 | | 源: www.dotnetcurry.com
标签: linq to xml
1
臭虫

.NET - Some Common Operations using LINQ To XML - Part I

carolhaozicarolhaozi 发表于 158 天, 9 小时, 2 分钟 之前
Wednesday, October 14, 2009 1:47:55 AM GMT Monday, October 05, 2009 5:36:00 AM GMT
In this article, we will explore some common ‘How Do I’ kind of examples using LINQ to XML. This article is the Part I of the 3-part LINQ to XML series. I assume you are familiar with LINQ. If not, you can start off with LINQ to XML by checking some tutorials at Getting Ready for .NET 3.5 and LINQ – Exploring C# 3.0 – Part I and over here. (more)
类别: Language | 点击: 2 | 评论 | | 源: www.dotnetcurry.com
标签: linq to xml
1
臭虫

ModelValidator in ASP.NET MVC 2 Preview 2 – Part 1 - Coding N Design

carolhaozicarolhaozi 发表于 158 天, 9 小时, 3 分钟 之前
Wednesday, October 14, 2009 1:47:55 AM GMT Monday, October 05, 2009 5:34:43 AM GMT
While going through the new features of ASP.NET MVC 2 Preview 2, one feature seemed quite interesting to me.There are a set of classes, using which we can build a custom validation framework for the model.ASP.NET MVC framework by default provides a Data Annotation(classes present in System.ComponentModel.DataAnnotations namespace) based model validation.This makes use of attributes added in the model class.But this can be overridden by custom implementations with great ease.In the next series of posts I... (more)
类别: Web Form | 点击: 0 | 评论 | | 源: codingndesign.com
标签: ASP.NET MVC 2 Preview 2, ModelValidator
1
臭虫

Asp.net MVC Areas in depth - on code

carolhaozicarolhaozi 发表于 158 天, 9 小时, 6 分钟 之前
Monday, October 12, 2009 4:46:52 AM GMT Monday, October 05, 2009 5:32:16 AM GMT
Asp.net MVC Areas in depth (more)
类别: Web Form | 点击: 5 | 评论 | | 源: suhair.in
标签: area, asp.net mvc
1
臭虫

适合ASP.NET MVC的视图片断缓存方式(上) - 老赵点滴 - 追求编程之美 - 博客园

carolhaozicarolhaozi 发表于 175 天, 13 小时, 16 分钟 之前
Thursday, September 24, 2009 3:14:14 PM GMT Friday, September 18, 2009 1:22:33 AM GMT
说到网站性能优化,没有什么比“缓存”更重要了。即便是某些朋友口中念念不忘的“静态页”,说到底也只是缓存了整张页面内容而已。但是,显然这样大粒度的缓存策略,在如今“牵一发而动全身”的Web 2.0站点中几乎是无法使用的。试想,在Twitter中的某个名人被数十万人订阅,那么他发一条消息,难道此时网站要去修改数十万用户的静态页面?因此,我们需要粒度更小的缓存。而比“整页缓存”粒度小一号的缓存,便是所谓“视图片断缓存”了。   视图片断缓存非常重要,因为它缓存的也是页面内容,这表示它比更低级别的缓存更有效率,也比静态页等整页内容缓存的适用面要大得多。在ASP.NET WebForm模型中提供了控件级别的缓存,我们可以为控件标记输出缓存策略,这样控件便不会每次都完整执行一遍。当然这个策略还不够灵活,因为它缓存的最小单元是“控件”,而不是页面中任意的部分。因此我在一年多前提出了一个CachePanel,由它包装的页面内容都可以被缓存,无论其内部是控件还是普通输出的内容。在实际生产过程中,CachePanel起到了非常重要的作用,许多场景下只要在页面中包裹一个,性能立即就有了质的飞跃。   只可惜,在如今ASP... (more)
类别: Web Form | 点击: 1 | 评论 | | 源: www.cnblogs.com
标签: asp.net mvc, 视图片断缓存
1
臭虫

Best Practice No 4:- Improve bandwidth performance of ASP.NET sites using IIS compression

carolhaozicarolhaozi 发表于 175 天, 13 小时, 17 分钟 之前
Thursday, September 24, 2009 3:14:14 PM GMT Friday, September 18, 2009 1:20:51 AM GMT
Bandwidth performance is one of the critical requirements for every website. In today's time major cost of the website is not hard disk space but its bandwidth. So transferring maximum amount of data over the available bandwidth becomes very critical. In this article we will see how we can use IIS compression to increase bandwidth performance. (more)
类别: Foundation | 点击: 1 | 评论 | | 源: www.c-sharpcorner.com
标签: Best Practice
1
臭虫

CodeProject: Builder Design Pattern.

carolhaozicarolhaozi 发表于 175 天, 13 小时, 19 分钟 之前
Thursday, September 24, 2009 3:14:14 PM GMT Friday, September 18, 2009 1:18:57 AM GMT
Download BuilderDesignPattern_src - 56.81 KBBackground In Elizabeth's day care center, teacher will help the kids to build all kind of toys to develop the kid's creative skill. One of Elizabeth's favor activity is to make animals with play-dough. A set of mold is the tool that Elizabeth always use to create her favor cool animals. One mold tool set includes five part, such as Head, body,arm,leg and tail. Whenever Elizabeth wants to build a animal, she will use one set of each tools to make a head, ... (more)
类别: Foundation | 点击: 1 | 评论 | | 源: www.codeproject.com
标签: Builder Design Pattern, Design Pattern
1
臭虫

CodeProject: How to make hooks on serial ports in C#.

carolhaozicarolhaozi 发表于 175 天, 13 小时, 20 分钟 之前
Thursday, September 24, 2009 3:14:14 PM GMT Friday, September 18, 2009 1:18:03 AM GMT
Download UsingWIN32SerialHooksInCSharpdemo - 30.11 KBDownload UsingWIN32SerialHooksInC_src - 257.4 KBIntroduction This C# console program illustrates how to use serial port hooks in C#, in a sense. This is because there’s really no readily available API which provides hooking the serial port unlike windows messages, keyboard, and mouse, etc, in which you can use SetWindowsHookEx API. Background  So you popped up your favorite inet browser, opened your favorite search engine and type “How do I ma... (more)
类别: Language | 点击: 0 | 评论 | | 源: www.codeproject.com
标签: C#, hook, serial ports
1
臭虫

CodeProject: Introduction to Optimization Techniques part-I.

carolhaozicarolhaozi 发表于 175 天, 13 小时, 21 分钟 之前
Thursday, September 24, 2009 3:14:14 PM GMT Friday, September 18, 2009 1:17:10 AM GMT
Introduction This article mainly represent that how to create an optimized application so that the performance of the application will become best and utilization of resources will be maximum and server will be always fast ,no memory leaks will arise. Background   To Utilize the memory absorbed by the heavy objects like DataSet,Datatable we should not highly dependent on Garbage collector because its non-deterministic behavior. So we should use best practices accepted by industry like using Dispose ... (more)
类别: Foundation | 点击: 0 | 评论 | | 源: www.codeproject.com
1
臭虫

CodeProject: An Introduction to LINQ to XML.

carolhaozicarolhaozi 发表于 179 天, 51 分钟 之前
Friday, September 18, 2009 1:23:38 AM GMT Monday, September 14, 2009 1:47:11 PM GMT
Download demo project - 20.99 KBIntroduction XML is widely used for storing and formatting data. By using the current APIs, it is slightly cumbersome to handle and play with XML data. LINQ to XML (.NET 3.5) makes handling XML easier through query experience similar to SQL. Background In this article, we will see basic things on how to work with XML using LINQ, where we will deal with storing and reading server information in XML format. Using the Code The project is a Windows application which conta... (more)
类别: Language | 点击: 2 | 评论 | | 源: www.codeproject.com
标签: linq to xml
1
臭虫

SET NOCOUNT (Transact-SQL)

carolhaozicarolhaozi 发表于 179 天, 52 分钟 之前
Thursday, September 17, 2009 2:52:00 AM GMT Monday, September 14, 2009 1:45:46 PM GMT
Introduction Whenever we write any procedure and execute it a message appears in message window that shows no of rows affected with the statement written in the procedure and we become very happy to see that our procedure is working. But do you know that this message creates an extra overhead on the network? Yes it does. By removing this extra overhead from the network, we can actually improve the performance of our database and our application. How should we do it? (more)
类别: DB | 点击: 0 | 评论 | | 源: www.dotnetfunda.com
标签: SET NOCOUNT, sql
1
臭虫

十个极其有用的在线网站设计工具 - 技术的超然台 - 博客园

carolhaozicarolhaozi 发表于 185 天, 21 小时, 44 分钟 之前
Friday, September 11, 2009 4:38:29 AM GMT Monday, September 07, 2009 4:54:09 PM GMT
十个极其有用的在线网站设计工具发现有不少外国朋友看我的blog,为保他们也有东西可看,特附英文在下。大家也可趁机复习下English。 也许你和我一样只能使用windows进行网页设计开发工作,而设计时常用的操作诸如颜色选择,创作字体,编辑图片,或是测试效果是否都必须麻烦地打开新的软件窗口呢?这篇文章将告诉你一堆有用的网络应用,解除设计师的烦恼。 When it comes to design, there’s a plethora of free web-based tools to help you accomplish tasks such as color palette selection, creating unique fonts, editing images, and testing typography. In this article, you’ll find a bunch of handy online utilities for designers.kuler Create   kuler是Adobe公司创造的web应用。你可以用它创作你的色彩搭配并与他... (more)
类别: UX | 点击: 0 | 评论 | | 源: www.cnblogs.com
标签: 在线网站设计工具
1
臭虫

Restore MS SQL Server database from within your application(s) - Wilson Kutegeka

carolhaozicarolhaozi 发表于 185 天, 21 小时, 45 分钟 之前
Friday, September 11, 2009 4:38:29 AM GMT Monday, September 07, 2009 4:53:38 PM GMT
Restore MS SQL Server database from within your application(s) Introduction This post is a follow-up of my previous post; Backup MS SQL Server database from within your application(s). It presents a simple way in which you could incorporate a restore tool from with in your application. Simply download the source code with the restore form that you need to just add into your application Key Methods include LoadServers; this method loads all local servers     '''     '''     PrivateSub LoadSe... (more)
类别: DB | 点击: 0 | 评论 | | 源: bloggingabout.net
1
臭虫

Carsonified » Speed up your Web App by 1000% with 1 Line of SQL

carolhaozicarolhaozi 发表于 185 天, 21 小时, 45 分钟 之前
Friday, September 11, 2009 4:38:29 AM GMT Monday, September 07, 2009 4:52:59 PM GMT
Frameworks have changed the way we develop web applications and many amazing products and services have been delivered as a result. As developers we take these [frameworks] for granted, they help abstract a lot of the day to day leg work of our applications, and help us develop features more quickly. (more)
类别: DB | 点击: 0 | 评论 | | 源: carsonified.com
标签: sql
1
臭虫

Zero Server Controls technique in ASP.Net, C# (XML Insertion, JavaScript tricks using AJAX deletion and XSLT record display using JavaScript)

carolhaozicarolhaozi 发表于 185 天, 21 小时, 47 分钟 之前
Friday, September 11, 2009 4:38:29 AM GMT Monday, September 07, 2009 4:51:34 PM GMT
Introduction: In this article I have explained about "Zero Server controls technique". I have implemented the new record insertion using the XML data type. For deletion of the record I have used the JavaScript tricks and Ajax. The record display in the table format, I have chosen the XML and XSLT. I have explained the Dynamic HTML technique using the Ajax techniques. But this time I have chosen this XSLT transformation technique. (more)
类别: Web Form | 点击: 0 | 评论 | | 源: www.c-sharpcorner.com
标签: asp.net, C#
1
臭虫

Rest For ASP.NET MVC, integrating with Json.NET

carolhaozicarolhaozi 发表于 191 天, 9 小时, 9 分钟 之前
Tuesday, September 08, 2009 1:49:43 AM GMT Wednesday, September 02, 2009 5:28:51 AM GMT
Rest For ASP.NET MVC isolates the MVC developer from the concern of rendering data in machine readable formats for wire transmission. One nice thing about it is how easy it is to go in and customize or replace the handling for any given format. In this post I will walk you through replacing the built-in Json format handler (built on DataContractJsonSerializer from System.ServiceModel.Web.dll) with one that instead uses the Json.NET library (this project is hosted here on Codeplex). (more)
类别: Web Form | 点击: 5 | 评论 | | 源: ranamauro.blogspot.com
标签: asp.net mvc, json.net
1
臭虫

CodeProject: .NET Best Practice No: 3:- Using performance counters to gather performance data.

carolhaozicarolhaozi 发表于 191 天, 9 小时, 12 分钟 之前
Tuesday, September 08, 2009 1:49:43 AM GMT Wednesday, September 02, 2009 5:25:49 AM GMT
.NET Best Practice No: 3:- Using performance counters to gather performance data   My other best practices articles Is this Article worth reading ahead? Introduction: - My application performance is the best like a rocket  Thanks Javier and Michael At the end of the day its count, calculate and display Performance counters are not magicians Types of measures in application Example on which performance counter will be tested Adding our first instantaneous performance counter in 4 steps Creatin... (more)
类别: Foundation | 点击: 1 | 评论 | | 源: www.codeproject.com
标签: .NET Best Practice
1
臭虫

CodeProject: Generic Singleton Design Pattern.

carolhaozicarolhaozi 发表于 192 天, 12 小时, 23 分钟 之前
Sunday, September 06, 2009 11:24:50 AM GMT Tuesday, September 01, 2009 2:15:02 AM GMT
Download ShareCode - 12.58 KBIntroduction The article describe GenericSingleton Design Pattern, that base on  static constractor behavior.Background There are two types of class constructors in C# 'regular constructor' with or without arguments and 'static constructor' without arguments. Regular Constructor 1. In case the class doesn't write with any constructor, C# provides an implicit default constructor, a constructor with no argument. 2. Constructors can be overloaded 3. Constructors are call... (more)
类别: Foundation | 点击: 0 | 评论 | | 源: www.codeproject.com
标签: Design Pattern, Generic Singleton
Previous 1 2 3 4 5 6 7 8 9 10 11 12 Next