Web View Search

I am using the Web to view my Lotus Project.

I have a view and I want to search the view for certain key words that a user will type in.

I do not want to use the @Command([ViewShowSearchBar];onOff) command.

The view is a normal view (not embedded) and is in applet mode, and then i want the filtered view to be shown.

I have searched throught the help and the only coding that work only work in the client, not on the web:-

Dim session As New NotesSession

Dim db As NotesDatabase

Dim view As NotesView

Dim doc As NotesDocument

Dim j As Long

Set db = session.CurrentDatabase

Set view = db.GetView("Client Forms Database")

j = view.FTSearch( "Witness", 0 )

Set doc = view.GetFirstDocument()

While Not(doc Is Nothing)

	Call doc.PutInFolder( "For Review", True )

	Set doc = view.GetNextDocument(doc)

Wend

Call view.Clear

Can anyone help?

Subject: Web View Search

You can use a $$SearchTemplate. Lotus help file have more detail on it

William

Subject: RE: Web View Search

I have looked on the Help and struggled to understand this feature.

I have created the form as the help suggests, and I cannot see how to search for specific words in a form and then view the results of the found form in a view. Can you help further?