| 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 Truly Excel-like Grid Control |
| MSDN |
| The ASP.NET DataGrid control generates an HTML output that really seems to be the Web counterpart of a Microsoft Excel worksheet. In addition, the control supports features like selection and in-place editing that can only further confirm this similarity. With in-place editing, in particular, the similarities are most clear. You click on a special type of command column and the grid redraws its content using text boxes rather than static text. At the same time, the command column changes the layout, replacing the edit link with two other links—one for saving and one for canceling changes. The overall design looks nearly identical to the Excel name box command bar. |
|
| 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. |
|
| Allowing Users to Upload Multiple Files at Once |
| DotNetJunkies |
| This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server. |
|
| Allowing Users to Upload Multiple Files at Once |
| DotNetJunkies |
| This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server. Specifically, this article will demonstrate how to set up a page that has 5 HtmlInputFile controls where a user can choose 5 images to upload. Only .jpg and .gif extensions will be accepted on the server and each one will be saved to a different directory::so any image that has the extension .jpg will be saved to the jpgs direcory and .gif will be saved to the gifs directory and everything else isn't saved at all. |
|
| Auto-Generating Wrapper Classes for Stored Procedures, Part 1: Using the AutoSproc Tool |
| MSDN |
| Get an overview of the AutoSproc code generation tool and how it works. The AutoSproc tool (based on classes exposed from the System.Reflection.Emit namespace) saves you time by using reflection to auto-generate wrapper classes for stored procedure calls. |
|
| Automated Generation of Table Columns, Class Properties, and Form Field Mapping with C# Reflection |
| C#Today |
| In this article, Tin Lam shows how to use reflection to help us with complex mappings. Reflection allows us to examine assemblies and types at runtime, and find out everything about that type. We will also see how to dynamically extract the type information, and then carry out automated mappings between database table columns, HTML form fields and class properties. |
|
| Data Types in C# |
| DotNetJunkies |
| Wajahat explains the basic data types in C# and the Common Type System. |
|
| GridView: Move Over DataGrid, There's a New Grid in Town! |
| MSDN |
| Go beyond the DataGrid! |
|
| How to Check if a DataReader is Empty - Updated |
| DotNetJunkies |
| This how to illustrates how to check if a DataReader is empty. |
|
| How to sum the fields in a Windows Forms DataGrid control and display the calculated totals in a footer by using Visual C# .NET |
| http://www.kbalertz.com/ |
| (842290) - Explains how to calculate the sums of the values in the columns of a Windows Forms DataGrid control and display these sums in a footer. Requires knowledge of Visual C# .NET. |
|
| How to sum the fields in a Windows Forms DataGrid control and display the calculated totals in a footer by using Visual C# .NET |
| http://www.kbalertz.com/ |
| (842290) - Explains how to calculate the sums of the values in the columns of a Windows Forms DataGrid control and display these sums in a footer. Requires knowledge of Visual C# .NET. |
|
| How to sum the fields in a Windows Forms DataGrid control and then display the calculated totals in a footer by using Visual Basic .NET |
| http://www.kbalertz.com/ |
| (836672) - Explains how to calculate the sums of the values in the columns of a Windows Forms DataGrid control and display these sums in a footer. Requires knowledge of Visual Basic .NET. |
|
| INFO: OleDbType Enumeration vs. Microsoft Access Data Types |
| Microsoft Support |
| (320435) - This article describes how the Microsoft .NET Platform OLE DB types map to the Microsoft Access data types for columns. |
|
| INFO: OleDbType Enumeration vs. Microsoft Access Data Types |
| http://www.kbalertz.com/ |
| (320435) - This article describes how the Microsoft .NET Platform OLE DB types map to the Microsoft Access data types for columns. |
|
| Memory Management in the .NET Framework - Part 1 |
| DotNetJunkies |
| In this article, Pierre explains one of the new concepts introduced in the .NET Framework - the Garbage Collector. |
|
| Microsoft .NET Kick Start Chapter 3: Programming with .NET |
| The Code Project |
| An introduction to programming with .NET. |
|
| Overview of MSBuild, Part 2: From the Task Author's Perspective |
| MSDN |
| Learn how to create custom tasks that MSBuild transparently uses in your projects. The author details a base class to ease the implementation of your own task, and offers some tips on how to debug your code in this scenario. |
|
| Personalization with ASP.NET 2.0 |
| MSDN |
| Create personalized Web sites faster, and build entirely new classes of applications, with the new personalization features in ASP.NET 2.0. |
|
| Tablet PC: You Can Achieve the Illusion of Handwriting on Paper When Using the Managed INK API |
| MSDN |
| See how the INK API and its managed Ink object, the InkCollector, enhance Tablet PC development. |
|