| .NET Data Persistence: SQL Server vs. Matisse vs. FastObjects |
| The Code Project |
| An article with source code examining the development speed and performance capability of .NET, Matisse and FastObjects |
|
| .NET Remoting under IIS - ASP.NET Application as Client. |
| The Code Project |
| Simplest method to host remote component under IIS with ASP.NET application as client |
|
| .NET Scheduled Timer |
| The Code Project |
| A timer that easily supports absolute schedules like run at 4:00 AM every day or at 5:00 PM on Fridays |
|
| A Data Access Layer to Persist Business Objects Using Attributes and Reflection |
| The Code Project |
| Then I came up with the idea of creating classes that would say how they should be persisted in the database. I would use attributes to say what database table my object should be persisted to, as well as other attributes to say what are the properties that should be mapped to table columns. From now on to update my code after a change in the solution I would only change the business object class. |
|
| A generic loading of Data in a DropdownList using caching Mechanism |
| The Code Project |
| This article shows you how to make use of DataAccessLayer & Caching . |
|
| A library to simplify access to image metadata |
| The Code Project |
| A library to simplify access to image metadata. |
|
| A Modified C# Implementation of Tony Selkes TextFieldParser |
| The Code Project |
| A C# implementation of the TextFieldParser class submitted by Tony Selkes that includes the ability to put the schema in an XML file and load the data directly into a DataTable. |
|
| A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 2 |
| The Code Project |
| The purpose of this document is to provide a practical guide to using Microsoft’s .NET DataTables, DataSets and DataGrid |
|
| A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 4 |
| The Code Project |
| The purpose of this document is to provide a practical guide to using Microsoft’s .NET DataTables, DataSets and DataGrid |
|
| A simple but handy utility for serializing and de-serializing various data |
| The Code Project |
| Interop various data among native, .NET and Java codes. |
|
| A Simple Usage of Reflection |
| DotNetJunkies |
| Xico takes a quick look at what Reflection is all about and explains what it can do for you. |
|
| About... The About Box |
| The Code Project |
| A reusable About Box form for developers and users. |
|
| Abstracting ADO .NET |
| MSDN |
| With the release of Microsoft® .NET just around the corner, developers are gearing up to take advantage ot the many features, increased interoperability, and better data integration that the new framework promotes. While COM and Visual Basic® 6.0 are still widely used and will likely live on for years to come, I've met many developers who are anxious to get moving with the .NET components. Some of the questions I am asked most often regarding .NET are how developing with ActiveX Data Objects (ADO) 2.x will change under ADO .NET and how can you still abstract ADO into a data service component. So, in this month's Data Points column, I'll try to tackle these issues.
|
|
| Advanced Basics: P2P Comm Using Web Services |
| MSDN |
| Build your own chat client |
|
| Advanced Data Access with ADO.NET and Oracle |
| MSDN |
| Learn how to use ADO.NET 1.1 to retrieve data from complex Oracle data types. |
|
| Advanced Data Mapping in .NET |
| DotNetJunkies |
| In this article, Tin demonstrates 3 automated mechanisms for data mapping: mapping from Database table columns to object properties, mapping from HTML form fields to object properties, mapping from ASP.NET Web controls to object properties. |
|
| An All VB.NET Explorer Tree Control with ImageList Management |
| The Code Project |
| Explorer TreeView control with Shell Folder access class and Icon management. |
|
| An ASP.NET Framework for Human Interactive Proofs |
| MSDN |
| Stephen Toub introduces concepts involved in Human Interactive Proofs and creates a framework for their incorporation into your ASP.NET sites. |
|
| An In-Depth Look at the DateTimeFormatInfo Class |
| C#Today |
| The DateTimeFormatInfo (DTFI) class is one of the most important members of the .NET System.Globalization namespace. Although acting mainly as the IFormattable interface for the DateTime structure, DTFI is also informational. You can, for example, find out the names of the days of the week and months of the year in native form, an amazing number of alternate date and time patterns that are acceptable in a particular culture, and which week is the first one of a new year. In addition, DTFI provides the main access to the more than half-dozen calendars supported by .NET. In this article, Bill Hall will show you how easy it is to use the facilities of DTFI, and will gain experience in writing code that functions correctly independently of language and world region. |
|
| An introduction to a post-relational database for .NET, Matisse - Part 3 |
| The Code Project |
| Step by step guide for .NET programming with a Post-Relational Database |
|
| Analog clock control in C# |
| The Code Project |
| How to make an analog clock control in C#. |
|
| Analyse IL and say hello (or goodbye) to your memory |
| The Code Project |
| Avoid unnecessary variable declaration and redundant instructions, analysing and understanding the compiler and generated IL instructions in a simple example, saving your memory. |
|
| Application DataBlock Extender Code Generator using SQLDMO |
| The Code Project |
| Use this Windows application to generate complete Data Access Layer for your applications. |
|
| ASP.NET Developer's Cookbook Chapter 3: Custom Controls |
| The Code Project |
| The most common techniques in building custom controls in ASP.NET. |
|
| ASP.NET Localization Part 1: CultureInfo |
| DotNetJunkies |
| The .NET Framework provides built-in mechanisms for localizing applications. ASP.NET internally uses Unicode and the String class of the .NET Framework also uses Unicode. The use of Unicode enables you to easily specify different encoding types for the response data sent to the client. While the .NET Framework will not translate your documents from the language they are written in to a different language, the built-in mechanisms will reconfigure output such as DateTime objects to their appropriate format. |
|