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.
我需要从笔记客户端中的文档在浏览器的 xpage 中打开一个文档。如果我单击视图,我会在关联的 xpage 中打开文档,但是在 xpinc 客户端中。有没有办法不从 xpage 事件中的代码重定向到浏览器?
通过表单中的代码打开 URL,而不是自动启动 XPage。
Sub Postopen(Source As Notesuidocument) Dim ws As New NotesUIWorkspace Call ws .URLOpen(<computed url to XPAGE>) source.Close End Sub
您必须在 Postopen 中执行此操作,因为 URLOpen 在 Queryopen 中不起作用。