AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The HTMLEndPage property gets and sets the HTML code inserted at the end of the page.
Note: It is also possible to specify the HTML code added at the end of the page in the "Advanced" tab of the page description window ("Html" tab).
Ejemplo
// 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
Sintaxis

Finding out the HTML content inserted at the end of the page Ocultar los detalles

<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 Ocultar los detalles

<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.
Observaciones
The HTML code is inserted at the end of the page, just before the closing of the "BODY" tag.
Versión mínima requerida
  • Versión 17
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local