在我的表单设计元素中,说&#34; form1&#34;,出于某种原因,我需要禁用其原始表单行为并实现另一个表单。所以我在&#34; form1&#34;的开头使用了</form>
。标有pass-thru。然后我在</form>
:
<form name="simple" method="post" enctype="multipart/form-data" action="test?openagent">
<label for="username">Your Name</label>
<input type="text" name="username" /><br />
<label for="email">Your Email</label>
<input type="text" name="email" /><br />
<label for="fileuploader">attachment</label>
<input type="file" name="fileuploader" />
<input type="submit" value="Sign Up!" />
</form>
代理商中的代码&#34;测试&#34;主要如下:
Dim s As New NotesSession
Dim doc As NotesDocument
Set doc = s.Documentcontext
If doc.Hasitem("REQUEST_CONTENT") Then
MsgBox "REQUEST_CONTENT=" & doc.REQUEST_CONTENT(0)
Else
If doc.Hasitem("REQUEST_CONTENT_000") Then
MsgBox "REQUEST_CONTENT_000=" & doc.REQUEST_CONTENT_000(0)
End If
End If
ForAll i In doc.Items
MsgBox i.name & "=" & i.values(0)
End ForAll
在我填写用户名,发送电子邮件并选择附件,然后提交表单后,我发现没有&#34; REQUEST_CONTENT&#34;也不是&#34; REQUEST_CONTENT_000&#34;项目显示;但是显示了CONTENT_LENGTH项目且值为130520。
我的问题是,在Domino 9.0.x中,哪些项目包含帖子数据?
答案 0 :(得分:0)
无。简单但悲伤:
您应该使用表单来实现这一目标。