从客户端 Notes 中的视图打开页面文档

Open xpage document from view in cliente Notes

我需要从 notes 客户端中的文档在浏览器的 xpage 中打开文档。如果我单击视图,我将在关联的 xpage 中打开文档,但是在 xpinc 客户端中。有没有办法不从 xpage 事件中的代码重定向到浏览器?

不要自动启动 XPage,而是通过表单中的代码打开 url。

Sub Postopen(Source As Notesuidocument)
    Dim ws As New NotesUIWorkspace  
    Call  ws .URLOpen(<computed url to XPAGE>)
    source.Close
End Sub

您必须在 Postopen 中执行此操作,因为 URLOpen 在 Queryopen 中不起作用。