壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 830|回复: 3

[Domino B/S开发] [求助]在B/S下怎么在视图中删除文档呢?

[复制链接]
发表于 2004/6/17 09:51:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
[求助]在B/S下怎么在视图中删除文档呢?
发表于 2004/6/22 14:21:00 | 显示全部楼层
写javascript调用代理删除
 楼主| 发表于 2004/6/23 10:52:10 | 显示全部楼层
能说得更清楚点吗!
发表于 2004/6/23 15:03:13 | 显示全部楼层
1、在视图中添加一个选择删除的列,代码为:
unid := @Text(@DocumentUniqueID);
tmp := "<input type=\"checkbox\" name=\"Delete\" value=\"" + unid + "\">";
"<td align=center>" + tmp + "</td>"+@NewLine
2、在表单中嵌入视图,做一个删除按钮,点击按钮触发删除代理。
3、删除代理代码:
Sub Initialize
        Dim session As New notessession
        Dim db As notesdatabase
        Dim arcdb As notesdatabase
        Dim view As notesview
        Dim item As notesitem
        Dim OnPage,TotalPage As Integer
        Dim href,QUERY_STRING As String
&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;       
        Set db=session.currentdatabase
        Set doc=session.documentcontext
        Set item=doc.getfirstitem("Delete")
        Forall unid In item.values
                If unid<>"" Then
                        Set doctoarch=db.getdocumentbyunid(unid)
                        If (doctoarch Is Nothing)<>True Then
                                Call doctoarch.remove(True)
                        End If
                End If
        End Forall
&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;
              这里可以根据需要添加删除后要跳转的页面。
End Sub
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 09:56 , Processed in 0.012871 second(s), 14 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表