Professional Software Development for FileMaker®

FileMaker Business Alliance
FileMaker 8 Certified Developer
FileMaker 10 Certified Developer
SUI Solutions is an independent entity and this web site has not been authorized, sponsored, or otherwise approved by FileMaker, Inc.

New to FileMaker?

FileMaker 11

Learn about the most
incredible database now!

IsWebClient

Filemaker custom function that checks if the current user connected to the database file from a web browser.

Format

IsWebClient

Parameters

none

Data type returned

number

Return values:
0 - accessing via FileMaker Network
1 - accessing via Web Publishing

Description

If user connected from web browser using Web Publishing, then function returns 1
For regular connection using FileMaker software function returns 0

Example

Input:

IsWebClient

Output (if accessing via Instant Web Publishing):

1

Source code

Select all
If( Position( Upper( Get( ApplicationVersion )); "WEB" ; 1 ; 1 ); 1; 0)