| A quick guide to using nested repeaters in ASP.NET |
| The Code Project |
| Using nested repeaters in ASP.NET with an XML data store |
|
| A Remedy for DataGrid Vertigo |
| DotNetJunkies |
| The AlternatingItemStyle can be a wonderful thing. But in many cases I found that I would start to get
a feeling like vertigo if I scrolled the page up or down. So I thought back to my days in Manhattan in the financial
industry and remembered how I used to prepare reports to be viewed on screen. I alternated the
colors of the rows, but I did it every three or five rows (depending on the width of the report,
the content of the report, or my own aesthetic taste). |
|
| A Reusable, Flexible Error Reporting Framework |
| The Code Project |
| Using configuration classes and simple implementation, this library allows your applications a flexible method of reporting errors that happen. Included is a Windows XP-like WinForms UI that allows users the ability of opting for error reporting in WinForms applications. |
|
| A Simple ASP.NET Server Control: Message Box & Confirmation Box |
| The Code Project |
| An article on creating a simple ASP.NET server control that functions as Message Box and Confirmation Box |
|
| A simple extension to the ListView object (in report mode). |
| The Code Project |
| A simple extension to the ListView object (in report mode). |
|
| A simple RadioButtonList in a Web DataGrid Column |
| The Code Project |
| A very simple and practical way, how a single RadioButton acts as a RadioButtonList in a web DataGrid server control column. |
|
| A Sneak Preview of Visual C# Whidbey |
| MSDN |
| Learn about new language constructs, compiler features, productivity enhancements, and debugger improvements in the upcoming "Whidbey" release of C#. |
|
| A Suite of Cryptographic Objects Part 2: Implementing Key Exchange Over a Network |
| C#Today |
| Throughout the whole history of Cryptography one element has continually created the most difficulty: Key Exchange. In this article, Richard Conway looks at the idea and implementation of Key Exchange over a network, bringing together the elements that we have discussed so far in the previous article (with respect to symmetric key cryptography) and also introduces concepts of public key cryptography. We demonstrate the use of this by creating a secure chat application. |
|
| A Templated databound Repeater control with per-row template selection |
| The Code Project |
| This control allows you to select a template for each different row in your Repeater, based on the content of that row. |
|
| 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. |
|
| About... The About Box |
| The Code Project |
| A reusable About Box form for developers and users |
|
| Accessing Oracle Database |
| C# Corner |
| This source code shows you how to connect to an oracle database and do operations such as select, insert, update and delete. |
|
| Accessing Schemas |
| C# Corner |
| OleDb data provider's connection class (OleDbConnection) provides a method GetOleDbSchemaTable that returns a database schema. |
|
| Add a header and footer control to all pages using http module |
| The Code Project |
| Use the http module to automatically add a header and footer control to all ASP.NET pages |
|
| Add Confirmation After Controls Validation on Client |
| http://aspalliance.com/ |
| Add a confirmation dialog to a web form after performing server control validation. |
|
| Add Professional Quality Reports to Your Application with Visual Studio .NET |
| MSDN |
| Crystal Reports for Visual Studio .NET provides a comprehensive reporting solution for .NET developers that is thoroughly integrated with both the Visual Studio .NET IDE and the .NET Framework. Crystal Reports supports ADO.NET, XML Web Services, and ASP.NET server controls and caching. It also integrates seamlessly with the Visual Studio .NET Server Explorer, toolbox, and design environment. It has a rich programming model and flexible options for customizing and deploying reports. These major features and others covered here take the drudge work out of data representation in your own applications. |
|
| 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 Blank Row to a DataGrid (Used to INSERT rather than UPDATE) |
| DotNetJunkies |
| In this article we will be illustrating one way to add a blank row to a DataGrid. Why would you want to do this? Who knows, maybe to enable a user to add a new record. This article will show you how to add a new row to a DataGrid by manipulating its DataSource - in this example a DataTable. Note that we will be simulating saving the new item back to the
database. |
|
| Adding a Control to a Form Programmatically |
| C# Corner |
| In this article I explain how to Add a control to a form programmatically. This is useful for developer who is not using VS.NET IDE. |
|
| Adding a Default ListItem in a Databound Listbox in ASP.NET |
| 4Guys from Rolla |
| In a previous article I showed how to use databinding to automagically populate an ASP.NET's listbox Web control with just a few lines of code. (If you've not already read the past article, be sure to do so now.) I've received a couple of feedback emails from folks since publishing the article asking how to add a default option to the listbox. That is, they want to add a listitem to the listbox, like: -- Please Choose an Option Below--. In this brief article we'll tackle this topic and more!
|
|
| 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. |
|
| Adding and Using RadioButton to DataGrid in ASP.NET |
| The Code Project |
| Adding and using RadioButton to DataGrid in ASP.NET. |
|
| Adding Controls to Windows Forms at Runtime |
| C# Corner |
| The example consists of one class named Form1 and has one Button and one TextBox. When the user clicks on the "Add Button" button, a button will be created and added to the form with MouseEnter, MouseLeave and MouseClick events. When the user hovers over the new button, it's BackColor changes, and when the user clicks the new button, the textbox displays it's name. |
|
| Adding Items to a DataView and DataTable |
| DotNetJunkies |
| In this article we'll be demonstrating how to add a new row to both a DataTable and a DataView. In the first part of this article we will briefly discuss the differences between a DataView and DataTable, then we'll give a code example and analysis of how to add a new item to each. The code will demonstrate how effecting one, has a direct effect on the other. |
|
| Adding Items to a DataView and DataTable |
| DotNetJunkies |
| In this article we'll be demonstrating how to add a new row to both a DataTable and a DataView. In the first part of this article we will briefly discuss the differences between a DataView and DataTable, then we'll give a code example and analysis of how to add a new item to each. The code will demonstrate how effecting one, has a direct effect on the other. |
|