| 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 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 |
|
| 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 Overview of Web Browser Express |
| MSDN |
| Easily build your own Web browser that supports tabs and an integrated link to a search engine by using the C# Express WebBrowser control. |
|
| ASP Parser |
| The Code Project |
| This article presents simple way to parse and analyze ASP document structure. |
|
| ASP.NET Color DropDown Control |
| The Code Project |
| An example of persisting and parsing a custom collection in an ASP.NET server control. |
|
| 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 Server Control - Updown Control |
| The Code Project |
| As the title of the article says, we will attempt to explain the steps for creating a web control and in particluar an up-down control. The functionlaity of this control is same as MFC's Up-Down control and Window Form's System.Windows.Forms.NumericUpDown control. We will try to explain the steps in as much as details as we can. A lot of information is available in .NET framework documentation. It is just how do you apply that information to create a control that can be useful for your day to day operations on the weg pages. |
|
| ASP.NET Server Control Creation |
| C#Today |
| ASP.NET custom server controls provide a powerful architecture for isolating the atomic functionality of applications, using highly reusable compiled components (dll). This makes enforcing application-wide rules and applying composite view design patterns easy. In this article, Daniel Cazzulino will look at numerous facets of these controls, such as extending their functionality. |
|
| ASP.NET State Management using C# |
| The Code Project |
| ASP.NET State Management using C# |
|
| Audio-Video Module for ASP.net Community Starter K |
| http://www.paul-abraham.com/ |
| Audio-Video Module for ASP.net Community Starter K |
|
| BetterCalendar WebControl |
| The Code Project |
| A replacement for the System.Web.UI.WebControls.Calendar control. |
|
| Building a Custom Registration and Login Control |
| MSDN |
| Why wait for ASP.NET Whidbey to add Registration and Authentication controls? Build that functionality into ASP.NET 1.1 with this article. |
|
| Building a DataNavigator Control |
| MSDN |
| The list of ASP.NET rich data-bound controls is a long one, but it's not all-encompassing. You won't find any Microsoft® .NET counterpart for the Data control—a scrollable and updateable binding context that data-bound controls could rely on to refresh their user interface. The original Data control allowed for simple movements—first, next, previous, and last. It worked on top of a Recordset object and exposed the UpdateRecord method to save changes according to the capabilities of the currently selected type of cursor. While not the perfect programming tool, the Data control was especially good at building simple user interfaces for tables used internally for administrative purposes. |
|
| Building a web based RSS Feed Viewer using System.XML |
| The Code Project |
| This article illustrates building a class to Parse RSS Feed's and return the details in a form that they can be eaisly manipulated and displayed. |
|
| Building Templated Custom ASP.NET Server Controls |
| MSDN |
| Learn how to create ASP.NET Server controls that enable users to customize the look and feel. |
|
| Classic ASP Framework - Make your Classic ASP code work like in ASP.NET |
| The Code Project |
| Developing in Classic ASP using the same technics as in ASP.NET?. If you have to work in Classic ASP, why don't do it the right way?. By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET! |
|
| ClickOnce Button Server Control |
| The Code Project |
| An article that shows how to do what everyone said you shouldnt or couldnt do with the asp.net button control |
|
| Client Side File System Browser using a Web Control TreeView |
| GotDotNet |
| There are two files that are included in the ZIP file. I am using Visual Studio.NET 2000 Framework 1.1 What does this do? Not to long ago I was given a challenge. To use a TreeView (WebControl) to list all drives on a users file system. When a drive was selected list all sub files and folders. All folders have a checkbox next to them. When a user clicks on a checkbox next to a file that file's full path is appended to a hidden textbox on the form Well this sounds easier then it is. All of the code for expanding and collapsing the tree nodes is client side. This will also give an example of how to keep the position of a child node. I hope that someone finds use with this as I learned alot from creating it. Thank you for reading this and please feel free to post any comments or suggestions that you may have. Please also note I included just the .ASPX & CS files in the ZIP. William O'Malley |
|
| Coloring items in a ListBox |
| The Code Project |
| This article describes the "bug/feature" in the ASP.NET ListBox. |
|
| Convert HTML to MHTML using ASP.NET |
| The Code Project |
| An article on how to convert a html document with images to a mhtml document |
|
| Creating Custom ASP.NET Controls in VS.NET |
| Susan Warren |
| This document describes the techniques users can employ to author and consume custom Web controls for ASP.NET Web applications using Visual Studio.NET. Creating custom ASP.NET server controls is much like creating custom Windows Forms controls. Support for the shared functionality (custom value editors, designer verbs, etc.) is described in the Programming Guide section of the .NET Frameworks documentation. This document describes the design-time support that is unique to ASP.NET server control authoring.
|
|
| Creating Custom Collections |
| FLWS.com.au |
| Even though the FCL offers many different collection types such as the SortedList, ArrayList, Hashtable etc., sometimes it makes sense to create your own. Creating your own, custom collection can help to make your code more self describing. |
|
| Creating Custom Web Controls with ASP.NET 2.0 |
| MSDN |
| The new adaptive rendering model in ASP.NET 2.0 provides a number of new options for control writers. This article shows how those options make creating custom controls for ASP.NET easier than before. |
|
| Creation of XML for Microsoft Tree View Control from SQL Server 2000 Database |
| The Code Project |
| Tree is used for hierarchical display of data and permits you to create effective user interfaces while easing development and maintenance time. |
|