请教如何在代理中用lotusscript实现打开一个表单的功能

请教如何在代理中用lotusscript实现打开一个表单的功能,第1张

表单中添加一个域,用于记录该文档的阅读次数, 在表单的postopen中(notes访问)或webqueryopen中调用的代理中(web访问) 使用note.域值=note.域值(0)+1 然后保存文档就是了。 上面的这个方法简单,但是容易产生冲突文档等,建议使用一个单

dim session as new notessession'new session

dim db as notesdatabase'notes database object

dim doc as notesdocument'notes document object

set db = session.currentdatabase'define currently opened database

set doc = db.createdocument()'create new document in current database

doc.form = "form_name"'related form name of the new document

doc.field = "field_value"'field value in the new document

call doc.computewithform(false, false)'compute all computed field in form of the doc

call doc.save(true, true)'save the change above in the doc

包含代理表单

在每个网页的上面包含代理表单以便修改

移除脚本

移除客户端脚本文件(i.e. Javascript)

允许Cookies

接受 HTTP cookies

显示图片

显示图片

显示提交

在网页上显示相关提交所作出的更改

Rotate13编码

在URL上使用rotate13编码

64位编码

在URL上使用64位的编码

隐藏Meta标签

隐藏网页Meta标签

隐藏标题

隐藏网站标题

会话Cookies

只存储这个对话的Cookies

新窗口

打开一个新的网页窗口


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11695316.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存