ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Web-specific functions / Page functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Allows you to find out the Internet address of a page.
Example
WEBDEV - Server codeAjax
Trace(PAGE_COORDINATE.Address())
// Displays for example:
// /WD290AWP/WD290AWP.EXE/CTX_2420-0-FCFOVjoyom/COORDINATES/SYNC_12564
WEBDEV - Server codeAjax
Trace(PAGE_COORDINATE.Address(paFull))
// Displays for example:
// http://www.windev.com/WD290AWP/WD290AWP.EXE/CTX_2420-0-FCFOVjoyom/COORDINATES/SYNC_12564
WEBDEV - Server codeAjax
// Initialization code of a link used to
// open a page via a secure link
ContextOpen(PAGE_SecurePage)
MySelf.Value = PAGE_SecurePage.Address(pdSecure) + "?WD_ACTION_=REFRESH")
Syntax
WEBDEV - Server codePHPAjax

Retrieving the address of a page Hide the details

<Result> = <Page>.Address([<Option>])
<Result>: ANSI character string
Address of the specified page or empty string ("") if:
  • the page does not exist in the project
  • the page context is not opened (ContextOpen).
<Page>: Page name
Name of the page whose address must be returned.
<Option>: Optional constant
Type of address to return:
pdFullFull address of the page (HTTP address).
pdFullAutoFull address of the page with the protocol used (HTTP or HTTPS).
pdRelative
(Default value)
Address relative to the current domain.
pdSecureFull address of the page, secured by SSL (HTTPS address).
Component: wd290page.dll
Minimum version required
  • Version 24
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help