[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Collection of web actions with advanced functionality
Source position: fpweb.pp line 58
type TFPWebActions = class(TCustomWebActions) |
||
public |
||
function Add; |
|
Adds a new web action to the collection |
function ActionByName(); |
|
Returns the action with the specified name |
function FindAction(); |
|
Searches for an action with the specified name |
property FPWebActions []: TFPWebAction; default; [rw] |
|
Array property providing indexed access to web actions |
property ActionVar: string; |
|
Name of the request parameter used to identify the action |
property CurrentAction: TFPWebAction; [r] |
|
The currently executing web action |
end; |
|
Collection of web actions with advanced functionality |
|
| | | ||
|
Collection of web actions |
|
| | | ||
| | | ||
| | | ||
TFPWebActions extends TCustomWebActions to provide a collection of TFPWebAction objects. It handles request routing to appropriate actions and provides content generation capabilities.
The collection maintains a reference to the currently executing action and can route requests based on URL parameters.
|
Web action with content and template support |
|