Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 Filemaker 发布了 XSLT 格式的布局。当用户访问此页面时,将提示他输入登录详细信息。我想在他成功登录后显示他的登录详细信息。我该如何做到这一点?
查看随 FileMaker Server 安装的示例文件。他们设置并引用一个变量:
<xsl:value-of select="$client-user-name"/>
如果您使用它,您还应该能够从会话中获取详细信息:
fmxslt:get_session_object (String session-name, String name)
其代码来自安装在示例文件夹中的“XSLT Reference.fp7”文件。