|
|
|
|
|
SessionRequestedPage (Function) In french: SessionPageDemandée
Not available
Returns the name of the page requested at the start of the session. Note: This function is particularly useful in the project code, to know the name of the page that will be returned. SWITCH (SessionRequestedPage())
CASE "PAGE_Admin"
IF NOT ConnecteUtilisateur() THEN
PageDisplay(PAGE_ErreurLogin)
END
OTHER CASE
END
Syntax
<Result> = SessionRequestedPage()
<Result>: Character string - Page name. Below are the different cases and the corresponding page name:
- Connection to a site in session mode via a searchable page: name of the searchable page.
- Connect to a site in session mode using the DynamicSiteDisplay function, specifying a page: page name (only if the appropriate access option is enabled on the page).
- Connection to a site in session mode from a WINDEV application requesting a particular page: page name (only if the appropriate access option is activated in the page).
- AWP page display: AWP page name.
- Empty string ("") in other cases, or if the function is called after the session start request.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|