如何获取当前用户名?

发布于 2024-08-29 21:24:16 字数 133 浏览 3 评论 0原文

我有这样的问题 我有两个文本框(A,B),我选择了“组合时计算” 当“A”登录时,文本中的当前用户登录名应该自动出现, 如果“B”登录,则“B”用户名应自动出现在“B”文本中,并且当我将表单提交到下一级时应保存它 怎么办?

问候 史密莎

i have a problem like this
i have two text boxes(A,B) which i have selected as " Computed when Composed "
when 'A' Login then in Text A Current User Login Name Should come automatically,
if 'B' Login then 'B' user name should come automatically in 'B' Text and it should be saved when i submit the form to the next level
how to do this ?

Regards
Smitha

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

獨角戲 2024-09-05 21:24:16

有以下示例此处

您可以使用它来获取当前 Web 用户的 Domino 用户名:

Dim session As New NotesSession
Dim username As String
username = session.EffectiveUserName

您必须选中“以 Web 用户身份运行代理”代理属性才能使其正常工作。

There is the following example here :

You can use this to get the current web user's Domino user name:

Dim session As New NotesSession
Dim username As String
username = session.EffectiveUserName

You do have to have the 'Run Agent As Web User' agent property checked for this to work.

友谊不毕业 2024-09-05 21:24:16

如果使用 AJAX 调用,您也可以这样做:

Dim session as new notessession
Dim request as notesdocument

set request = session.documentcontext
Msgbox request.remote_user(0) ' returns the name of the current user

我不是 100% 确定这是否适用于 WebQuerySave 或 WebQueryOpen 代理,但它应该

If using an AJAX call you can also do:

Dim session as new notessession
Dim request as notesdocument

set request = session.documentcontext
Msgbox request.remote_user(0) ' returns the name of the current user

I am not 100% sure if this works with WebQuerySave or WebQueryOpen agents but it should

記憶穿過時間隧道 2024-09-05 21:24:16

您还可以使用@UserName 来获取当前用户名。

You can also use the @UserName to get the current user name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文