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 / Desarrollar una aplicación o un sitio web / Controles, ventanas y páginas / Página
  • Overview
  • How to?
  • Principle
  • Implementation
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
How to avoid displaying the URL of WEBDEV pages in the browser?
Overview
Be default, when the user connects to a site developed with WEBDEV (dynamic site in session mode), the browser address bar contains an address in the following format:
  • short URL: www.mondomaine.fr/MonAppli
  • or full URL if the web server does not accept a short URL: www.mondomaine.fr/WD300AWP/WD300AWP.exe/CONNECT/MonAppli
This address can easily be hidden from the user by encapsulating it in an iFrame of a static page.
Remarks:
  • This feature only affects standard dynamic sites in session mode. This feature does not affect AWP sites, PHP sites or static sites.
  • For AWP sites, the name of the WEBDEV Application Server can be hidden in the page URL via the URL Rewriting.
How to?

Principle

To display an unchanged URL when using a WEBDEV website, simply display the site in the iFrame of a static page. The address displayed in the browser is the address of the static page and the WEBDEV website is displayed in an iFrame.

Implementation

The static frameset that will host the dynamic site in session mode can be created:
  • by any editor.
  • by WEBDEV. In this case, it is recommend to use a project other than the dynamic project in session mode to display.
Example of HTML code for the static frameset to create:
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Titre du site</title>
<iframe src="/sitealancer" name="MonSite" style="border:0;overflow:auto;width:100%;height:100%;
position:absolute;top:0;left:0;"></iframe>
</html>
In most cases, this HTML page will be the page defined by default for the Web server (IIS, Apache, etc.)
Contact your Internet service administrator to redirect the http://www.mydomain.com address to this page.
Versión mínima requerida
  • Versión 10
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

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