| 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 |
|
| Adding a "Totals" Field in a DataGrid |
| DotNetJunkies |
| Lately one of the questions that has been popping up a lot is, "How do I show column totals in a DataGrid?" Personally I have provided sample code for this question more than a few times, so I thought it would only be appropriate that we here at DotNetJunkies HQ get a tutorial up on the topic. |
|
| Adding a Totals Field in a DataGrid |
| DotNetJunkies |
| In this tutorial Doug shows you how to programmatically sum the values of a column in a DataGrid, and display that total in the footer of the DataGrid. |
|
| Advanced Checkbox Validation Across n-Pages for the DataGrid Control |
| DotNetJunkies |
| In this article, Oliver shows how to select up to two records from a datagrid that can then be compared to generate a PDF document on the fly. |
|
| Advanced DataGridding: Paging, Sorting, Showing Grid Statistics and Hiding Redundant Controls |
| DotNetJunkies |
| This article takes a look at how to solve some of the most common problems developers encounter when trying to work with the DataGrid. These include DataGrid paging, sorting by columns, showing statistics about result, hiding the pager button and hiding the DataGrid itself when there are no results to display. This article walks you through a solution. |
|
| An Extensive Examination of the DataGrid Web Control: Part 2 |
| ASP.NET - 4GuysFromRolla |
| This article will examine how to perform custom formatting of the DataGrid. |
|
| An Extensive Examination of the DataGrid Web Control: Part 3 |
| ASP.NET - 4GuysFromRolla |
| This article is the third piece of a multi-part series on using the DataGrid Web control that will span several weeks. The ASP.NET DataGrid Web control, which displays database information in an HTML table, is highly versatile. The basics of the DataGrid were discussed in Part 1; information on specifying display properties of the DataGrid was discussed in Part 2. This article will examine how to associate custom events with the DataGrid. |
|
| Ask the DotNetJunkies: DataList Paging |
| DotNetJunkies |
| Could you teach me how to use paging to "DataList" web control like "DataGrid",just
like [ASP.NET News] or [ASP.NET Tutorials] on your site? I hope you can help
me with this question or kindly send source code (news.aspx) to me. Thank you
very much!! A Rookie in ASP.NET. |
|
| ASP.NET DataGrid Column Sorting |
| DotNetJunkies |
| In last two week's I have shown you how to implement both built-in and custom paging functionality using the ASP.NET DataGrid server control. This week I will show you how to implement column sorting using the DataGrid. |
|
| ASP.NET DataGrid Column Sorting |
| DotNetJunkies |
| This week I will show you how to implement column sorting using the DataGrid Web common control. |
|
| ASP.NET DataGrid Paging Part 1 - Built-In Paging |
| DotNetJunkies |
| In this article Doug Seven introduces you to paging data with the DataGrid using the built-in paging capabilities. This article uses Visual Basic .NET and SQL Server 2000. |
|
| ASP.NET DataGrid Paging Part 2 - Custom Paging |
| DotNetJunkies |
| In this article Doug Seven shows you how to use the DataGrid custom paging feature. The code is in C# and it uses stored procedures in SQL Server 2000. |
|
| Building a DataGrid with Add and Edit Features |
| DotNetJunkies |
| The DataGrid server control is one of the most widely used controls in ASP.NET-based projects to display data in a table form. When using a mixture of database- and manually-driven DropDownLists, placing them in a DataGrid can be confusing. In this tutorial, I'll focus on resolving this issue using an example of an expense entry and reporting system. |
|
| Building a Master/Detail DataGrid for Database Inserts |
| DotNetJunkies |
| We are going to build an example Web Form that you can extend in your application. We will have two tables - OrderMaster and OrderDetails. As the names suggest the former is a master table where as the later is detail table. We want to add one record in the master table and several others in the detail table. We will not display any existing rows on the screen to maintain a clean page. |
|
| Building a Master/Detail DataGrid for Database Inserts |
| DotNetJunkies |
| In this article, Bipin explains how to build a Web Form where the requirement is inserting many rows of data against one row of master data. He builds an example Web Form that you can extend in your application with two tables - OrderMaster and OrderDetails. |
|
| Creating a Fully Editable DataGrid |
| DotNetJunkies |
| In this example I have written a simple WebForm to manage a list of contacts which I have stored in XML. The requirements are simply the ability to add new contacts and to be able to modify or delete existing contacts. The user should be able to modify or delete multiple contacts at one time. I have also allowed the user to sort their grid by the column of their choosing. |
|
| DataGrid Output Formatting |
| DotNetJunkies |
| In this article I will demonstrate how to use two different techniques to modify the output and formatting of your data. I will show you how to use a helper function to change the data displayed. After that, I will explain how to use the OnItemDataBound event of the DataGrid to modify the data and the formatting of the grid. |
|
| Displaying Information about the ASP.NET Process |
| ASP.NET - 4GuysFromRolla |
| In a previous article (How Long has the Web Server Been Up?) we examined a way to display the number of milliseconds the Web server computer had been running. This metric measured the time the actual machine had been running without a reboot, not the time that IIS had been running. Regardless, such a metric is useful if you want to keep an eye and ensure that your Web host is keeping the servers up, or if you are just wanting to create an administration-information page for your company's intranet. In this article, we will look at how to display more performance-related metrics. |
|
| Migrating from ASP to ASP.NET 2.0 |
| MSDN |
| Tour the advantages of developing with ASP.NET 2.0, and gives guidance to developers in migrating from ASP to ASP.NET 2.0. |
|
| Migrating from ASP.NET 1.x to ASP.NET 2.0 |
| MSDN |
| Explore features new to ASP.NET 2.0 from ASP.NET 1.x that offer a better set of options for Web development within the .NET Framework. |
|
| Paging Database Results in ASP.NET |
| 4Guys from Rolla |
| In Part 1 we looked at how to bind a DataSet to the DataGrid Web control. However, in our live demo we noted that the sheer number of results made the data hard to consume for visitors. Ideally, we'd like to page this data. In this part, we'll look at how to implement paging using the DataGrid Web control. It is surprisingly easy! |
|
| Recalculating Column Values in DataGrid |
| DotNetJunkies |
| "I have bound a grid which contains three template cols (A, B ,C). Each Column contains a TextBox. When I bind the data I get the value of these grid TextBoxes from SQL Server. Now all that I am trying to do is when I change the value of either column A or B (TextBoxes) I want to recalculate column C. Can you please help me?" In some cases you need to dynamically calculate the value of a DataGrid column based on values in other columns. This article will explain how to make this happen. |
|
| Recalculating Column Values in DataGrid |
| DotNetJunkies |
| This article explains how to dynamically calculate the value of a DataGrid column based on the values in other columns. Bipin takes you through how to accomplish this step-by-step. |
|
| Selecting, Confirming and Deleting Multiple DataGrid items in ASP.NET |
| http://aspalliance.com/ |
| Ever needed to use a DataGrid to select multiple items for deletion, with confirmation, like Hotmail does? This articles demonstrates how in a few simple steps using VB.NET. |
|
| THE BIG STORY An Overview of the New Services, Controls, and Features in ASP.NET 2.0 |
| MSDN |
| The lowdown on ASP.NET 2.0 |
|