Difference between revisions of "TutWebAppServer"

From Overbyte
Jump to navigation Jump to search
(Split of the page into one page per lesson)
Line 1: Line 1:
 +
[[Main_Page | Main page]] -> [[ICS_Components_Reference | ICS component reference]] -> [[THttpAppSrv | THttpAppSrv]] -> Tutorial
 +
 
== Description ==
 
== Description ==
 
This tutorial is about writing a dynamic web application using THttpAppSrv component you can find in ICS version 7.
 
This tutorial is about writing a dynamic web application using THttpAppSrv component you can find in ICS version 7.

Revision as of 14:31, 22 May 2009

Main page -> ICS component reference -> THttpAppSrv -> Tutorial

Description

This tutorial is about writing a dynamic web application using THttpAppSrv component you can find in ICS version 7.

A dynamic web application is one which not only deliver static pages and files, but also dynamic web page.


Source code


Dynamic Pages

A dynamic web page is build on a template html file having special tags such as "<#MyTagName>" which are replaced at runtime by content provided by the application. Usually the content is fetched from a database but can comes from any source. The only limit is the developper imagination !

The component has also special tags to handle tables. Not only html tables, but anything which need to be repeated such as a list content. Using those tags, the developer describe one table row in the template and at runtime, as many rows as needed are created. The developper has full control on the data in each row and of course the number of generated rows.


The tutorial

The tutorial is divided in lessons and each lessons in steps. You must do the lesson in the correct order since most lessons depends on the previous one. In other words, lessons are simply miles stones toward the final

The steps belows correspond to Delphi 2009. You'll have to adapt somewhat the steps according to the IDE you use. The tutorial is OK with all Delphi versions supported by ICS-V7. There could also be some minor differences according to the settings you use for your ide. I'm using undocked layout with floating VCL designer. I'm using a french localized version so the menu items and button captions I give are translated from french to english and could be slightly different than the original english one.

Obvioulsy, you must have ICS-V7 installed within the IDE. When you install ICS, you usually add <ics installdir>\Delphi\VC32 to the compiler search path. If don't do that, you must add that path to every project.

Lessons

Lesson 1 - Hello World
Lesson 2 - Hello Today
Lesson 3 - Simple data entry and processing
Lesson 4 - Building tables
Lesson 5 - Relocation
Lesson 6 - Simple login and session data
Lesson 7 - Dynamic images
Lesson 8 - Asynchronous answer