Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

    Articles & Tutorials Articles & Tutorials RSS feed

  • Generate Thumbnail Images from PDF Documents in .NET

    by jonathan_hodgson

    This article presents VB.NET code to create thumbnail images from a directory of Adobe Acrobat PDF documents using the .NET Framework. . Read full article

  • Building a Full-Featured Custom DataGrid Control

    by DMarko1

    In this article, we will demonstrate how you can build your very own Datagrid control component, one that you will be able to customize, and more importantly reuse. Based on this ability, you will then end up with one powerful control that will have many implementations, from which you could learn about creating almost any other types of custom controls.. Read full article

  • Implementing two-way Data Binding for ASP.NET

    by rstrahl

    ASP.NET simplifies many things but data binding simple controls like textboxes and checkboxes leaves a lot to be desired. Databinding is one-way only and you end up doing lots of repetitive work to publish your data. In this article I'll show you how simple databinding in .Net works and then show how to create custom controls that implement two-way binding to make short work of creating databound forms.. Read full article

  • Valid XHTML within .NET

    by liquiddevelopment

    At present none of Microsoft's ASP.NET controls intrinsically support the strict W3C XHTML standards. This can cause problems when using ASP.NET controls on pages that need to conform to one of the XHTML standards. In order to use Microsoft's supplied controls some modifications will be required. This series of articles intends to focus on the more widely used controls and the steps required to make them output valid code.. Read full article

  • ASP.NET Controls Explained: Part 1/2

    by devart_jamesyang

    In ASP.NET, there are several features that we can use to make our code reusable and independent of other code, including user controls, server controls, and the code behind method. In this article James explains what each of these features are used for, and also shows you how to use each one by providing a number of simple yet detailed ASP.NET examples.. Read full article

  • ASP.NET Controls Explained: Part 2/2

    by devart_jamesyang

    In this, the final article of the two part series relating to ASP.NET controls, James teaches us about custom controls and components. He talks about creating them, as well as compiling them from the command prompt using the C# compiler. He also provides two ASP.NET examples that demonstrate how to both create and integrate custom controls and components into our ASP.NET pages.. Read full article

  • Making skinned custom controls

    by Aylar

    This article will show you how you can easily make your custom controls skinned by deriving from a new control class that we will call SkinControl. . Read full article

  • Introduction to custom server controls

    by Aylar

    In this article I'll guide you through the creation of a guestbook, as an introduction to developing custom server controls. Read full article

  • Inheriting An ASP.NET Server Control

    by palom

    How to easily customize an ASP.NET server control by deriving from it. . Read full article