ASP.NET is the .NET programming environment for building Internet applications with an HTML front end.
This site features the free online "Beginner's Guide to ASP.NET Programming for Delphi developers". Throughout the course developers will learn how to design, develop and debug ASP.NET web application using Borland Delphi for .Net. The chapters cover the fundamental elements of creating Web applications (working with Web Forms, Web Services and User Controls) using Delphi, including the Integrated Development Environment (IDE) and the Delphi for .Net language.
ASP.NET Delphi Project With Source
Here's a list of the ASP.NET Delphi source code examples, written by Zarko Gajic, that can be found on the Borland's Code Central:- aspxDelphi.net WCL (Web Control Library for ASP.NET) - Misc ASP.NET web controls for learning purposes. Currently included: Emoticon (Smiley selector), ColorSelector, DateSelector and AutoPostback (TTimer like control)
Emoticon shows how to embed images and scripts directly into the assembly, then extract the resources when needed, on the fly, using IHttpHandler implementation. Use it to enable a user to pick its mood by presenting various "smiley" images.DateSelector renders as three DropDownList components (one to display Day, Month and Year). It raises an event when the Date selected has changed. Has two (additional) properties: Day and YearSpan. The code uses composition and shows how to override the CreateChildControl method and how to code a simple "composite control" designer.
ColorSelector represents a drop down list that lets users select a Color value (rendering used to construct the control).
AutoPostback is a TTimer like control. It generates a postback (and a "Postback" event) when an amount of milliseconds (interval property) has passed after the Web Form was loaded in the client browser.
- ASP.NET Web.Config (Custom) Section Handler - an example of how to deserialize an instance of the class using the web.config XML file as input. Simply put: how to use web.config to store database connection strings (into a collection of objects each describing one connection).
- ASP.NET Portal Example (BDSWebExample) - Fully functional asp.net application. The purpose is to show how to build a "CodeCentral"-like web site using ASP.NET
- Delphi Web Store - DelphiWebStore ASP.Net application demonstrates basic online shopping tasks including: a product catalog, user authentication and personalization, shopping baskets, and order checkout. Database provider: BDP.NET; Supported database: Interbase.
- Delphi Web Store ADMIN - a complete web-based administration utility for the aspxDelphi.net Store application. Administer customers, orders, categories, products, reviews and administrators. Database provider: BDP.NET; Supported database: Interbase.

