PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → WebDev 17 - Determine which browser is used.
WebDev 17 - Determine which browser is used.
Iniciado por guest, 27,nov. 2015 15:54 - 2 respuestas
Publicado el 27,noviembre 2015 - 15:54
Hi all,

Is it possible in Webdev 17 to determine which browser one is using. I have some difficulties with AJAX and Internet Explorer. I want to put a warning on the screen for IE-users.

Best regards,

Aad Gouka
Publicado el 27,noviembre 2015 - 17:13
you can try to read the Browser platform using commands like: BrowserType()

Hopwever, it might not pick up on the newest browsers. If not you can also determine possible browsers from the User agent string that can be retrieved by running the sysenvironment command ( look for HTTP_USER_AGENT)
Publicado el 28,noviembre 2015 - 11:43
Thanks, This is what I was looking for.

Aad