Protecting Your HTML Files

Protecting Your HTML Files

Use the following code to protect your HTML files from prying eyes. Instead of embedding your HTML files into Notes documents, create a form in Notes with a name (text) field and a body (rich text field). Put the name of the HTML file in the name field and paste the HTML code into the body field. If you have to make changes all you have to do is edit the Notes document. Create a view called HTML and have the first column sorted by name.

A call to a Web page would be something like:

http://127.0.0.1/html.nsf/gethtml?openagent&index

This agent must be a shared agent that runs once.


Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim ctxDoc As NotesDocument
Dim tmpText As String
Dim tmpHtml As String
Dim positionOfChar As Long

Set ctxDoc = session.DocumentContext
tmpText = ctxDoc.Query_String(0)
posOfChar& = Instr(1, tmpText$, "&")
tmpHtml = Mid$(tmpText,posOfChar& + 1)

Set db = session.CurrentDatabase
Set view = db.getView("html")
Set doc = view.getDocumentByKey(tmpHtml)
Set rtitem = doc.GetFirstItem( "Body" )
htmlText = rtitem.GetFormattedText( False, 0 )

Print htmlText

End Sub

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.