CodeProject
September, 2009 - Microsoft All-In-One Code Framework - Site Home - MSDN Blogs
Sign In
Microsoft All-In-One Code Framework
The Microsoft All-In-One Code Framework is a free, centralized code sample library provided by the Microsoft Community team. Our goal is to provide typical code samples for all Microsoft development technologies.
.
Sample Browser
Social Media Sharing
September, 2009
Microsoft Next
Sample of the Day
RSS
http://blogs.msdn.com/b/codefx/archive/tags/SampleOfTheDay/
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
OK
RSS for comments
RSS for posts
Atom
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET 4
ADO.NET
ASP.NET
Blog
COM
Interop
Network
News
Office
Release
Sample Browser
SampleBrowser
SampleOfTheDay
Silverlight
Story Creator
TFS
VSX
Windows Azure
Windows Forms
Windows Phone
Windows Phone 7
Windows SDK
Windows Shell
WPF
XML
Monthly Archives
Archives
May 2012
(32)
April 2012
(31)
March 2012
(34)
February 2012
(16)
December 2011
(2)
November 2011
(1)
October 2011
(2)
September 2011
(1)
August 2011
(2)
July 2011
(5)
June 2011
(1)
May 2011
(3)
April 2011
(3)
March 2011
(5)
February 2011
(3)
January 2011
(3)
December 2010
(1)
November 2010
(24)
October 2010
(4)
September 2010
(5)
August 2010
(3)
June 2010
(2)
May 2010
(3)
March 2010
(5)
February 2010
(2)
January 2010
(3)
December 2009
(3)
November 2009
(3)
October 2009
(4)
September 2009
(9)
August 2009
(3)
July 2009
(1)
June 2009
(1)
May 2009
(1)
April 2009
(2)
Visitors
Feedjit Live Blog Stats
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Microsoft All-In-One Code Framework
All-In-One Code Framework Release 2009-9-17: Brief introduction of new samples
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
Microsoft All-In-One Code Framework Solution 2009.8.26 updated. Download add: http://cfx.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=32006 If this is the first time you heard about our All-In-One Code Framework project, please refer to our related introduction on the front page: http://cfx.codeplex.com/ And the following two blogs: All-In-One Code Framework Solution 微软一站式开发技术框架解决方案 中文说明 CSWin7TaskbarAppID, VBWin7TaskbarAppID, CppWin7TaskbarAppID ...
Microsoft All-In-One Code Framework
All-In-One Code Framework lands on MSDN China homepage
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
All-in-One Code Framework lands on MSDN China homepage to benefit Chinese developers. As the MSDN headline reads, “All-in-One Code Framework makes learning and using Microsoft technologies easy and productive”. You can download the latest release on http://cfx.codeplex.com/Release/ProjectReleases.aspx .
Microsoft All-In-One Code Framework
How to use the ASP.NET Validation Control to validate the user input
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
ASP.NET Validation control is a series of controls which can help us to validate the user input and prevent the malicious data from being posted to the server easily. And according to the browser’s security limit, the ASP.NET Validation control provides two ways of validation: Server Side and Client Side. This article demonstrates how to use ASP.NET Validation controls in that two ways. Sample scenario: In order to explain the Validation controls more clearly, the sample will simulate...
Microsoft All-In-One Code Framework
How to implement Insert, Edit, Delete, Paging and Sorting functions in an ASP.NET GridView control
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
3
Comments
This article illustrates how to populate an ASP.NET GridView control with a SQL Server table and then implement Insert, Edit, Delete, Paging and Sorting functions in it. In this sample, I don’t use DataSource controls and manipulate data in ADO.NET way. In this sample, we use a simple SQL Server table named which has only three columns: CREATE TABLE [dbo].[Person]( [PersonID] [int] IDENTITY(1,1) PRIMARY KEY CLUSTERED NOT NULL, [LastName] [nvarchar](50) NOT NULL, [FirstName] ...
Microsoft All-In-One Code Framework
How to create an ASP.NET Ajax Extender Control
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
2
Comments
The CSASPNETAjaxExtender sample demonstrates how to create an ASP.Net Ajax ExtenderControl, which is a TimePicker to allow the user dragging the minute/hour pointer to select a time of a day on a clock. Microsoft ASP.Net Ajax Extensions enables you to expand the capabilities of an ASP.Net Web Application in order to create a rich client user experience. To encapsulate the client behavior for use by ASP.NET page developers, you can use an extender control. An extender control is a Web server...
Microsoft All-In-One Code Framework
ASP.NET Output Cache
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
Scenario By default, when we request an ASP.NET website, every request is processed by many stages, such as Page initialization, Load, Rendering, etc. This consumes many resources on server. Considering follow scenario: Many customers will browse an ASP.NET website for News page and the News page won’t be changed for several hours. Basing on common route, when multiple customers request same News page in almost same time, ASP.NET will execute the same code to generate response with same News...
Microsoft All-In-One Code Framework
How to make an ADO.NET Data Service client (console application) to CRUD ADO.NET Entity Data Model, LINQ to SQL Classes, and non-relational data
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
My last blog article introduced a step-by-step guide to make ADO.NET Data Services for ADO.NET Entity Data Model, LINQ to SQL Classes, and non-relation data. Today you will see how to make an ADO.NET Data Service client (console application) to CRUD (Create, Read, Update, and Delete) these different data sources in Visual C# (or VB.NET). Also, you will see how to use ADO.NET Data Service query options, parse DataServiceClientExceptions, and use service operations that we created in the last blog...
Microsoft All-In-One Code Framework
Work with Silverlight Deep Zoom
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
Introduction (To get the code sample of this blog post, please refer to the sample named CSSL3DeepZoom in All-In-One Code Framework project at http://cfx.codeplex.com/ . This sample will be included in our next release.) My Name is Yilun Luo. I have worked as a support engineer for 3 years in Microsoft, covering WPF, Silverlight, Azure Services Platform, and so on. Recently I joined All-in-One Code Framework project team to work together with other specialists to create this fabulous framework...
Microsoft All-In-One Code Framework
All-In-One Code Framework Release 2009-8-26: Brief introduction of new samples
Posted
over 3 years ago
by
Jialiang Ge [MSFT]
0
Comments
Microsoft All-In-One Code Framework Solution 2009.8.26 updated. Download add: http://cfx.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=32006 If this is the first time you heard about our All-In-One Code Framework project, please refer to our related introduction on the front page: http://cfx.codeplex.com/ And the following two blogs: All-In-One Code Framework Solution 微软一站式开发技术框架解决方案 中文说明 In this update, we add some Windows 7 and Windows 7 application...
Page 1 of 1 (9 items)