ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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
The HTMLEndPage property is used to get and change the HTML code inserted at the end of the page.
Remark: The HTML code inserted at the end of the page can also be specified in the "Advanced" tab of the page description window ("Html" tab).
Example
// Adds a Google Analytics code
sGoogleCode is string = [
<script type="text/javascript">
 
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-99999999-9']);
_gaq.push(['_trackPageview']);
 
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol?
'https://ssl': 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
 
</script>
]
 
MyPage.HTMLEndPage = sGoogleCode
Syntax

Finding out the HTML content inserted at the end of the page Hide the details

<HTML content> = <Page used>.HTMLEndPage
<HTML content>: Character string
HTML content inserted at the end of the page.
<Page used>: Page name
Name of the page to be used.

Modifying the HTML content inserted at the end of the page Hide the details

<Page used>.HTMLEndPage = <HTML content>
<Page used>: Page name
Name of the page to be used.
<HTML content>: Character string
HTML content that must be inserted at the end of the page.
Remarks
The HTML code is inserted at the end of the page, just before the closing of the "BODY" tag.
Minimum version required
  • Version 17
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help