Attachments in RichText Field

Can I to hide / to redirect the attachments of the RichTextField “Body” in the web? How do I do it? I have already set the $V2AttachmentOptions “0” (zero) to not display attachment icons in the bottom of the web page.

I build links to show the attachments with your subjects and I need to remove the attachment of the RichTextField Body, but I not want to remove it of the document. Firstly when the attachment is putting into the document, it’s Ok, but when the document is saved twice or more the attachments are putting in the Body.

Any ideas?

Mávia

Subject: Attachments in RichText Field

What we do is create an agent that detaches the attachment to the server in a special directory and change the attachment name to the documentunid it was attached to keeping the extension at the end of the attachment ie:

MyWordDoc.doc becomes A0876439283740AE1.doc on the server side.

We then place the new name on the document it was attached to. On the document, we also place a URL string that points to the server directory the attachment resides and have a hotspot button that says ViewAttachment that points to the file on the directory via the url. We hide the RT field that attachment is attached to from the WEB and use the fileUpload function in Domino to attach the attachments to this hidden field.

Subject: RE: Attachments in RichText Field

I have been tried to insert other RichTextField in the document, to force the attachment keep there on the contrary to put in the “Body” but I hadn’t obtained success yet.

Is it really necessary to detach the attachments to the server?

My aplication is a content manage, and several users can to attach and detach at any hour. I need that when the document has been saving twice or more I can see the body document without attachments, in the other hand this atachments should be showed like url links. I’ve already built the links into the body, but the attachments still are appearing in the body inside of a table with edge.

Subject: RE: Attachments in RichText Field

I had success. I did steps:http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/b3facfe15b0631d185256f2600736023?OpenDocument

Thanks