Multiple rows in a document in web?

Hi,

http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/c4ae1d7b5c1a1e1385256f6c00253c35?OpenDocument&Highlight=0,lono,splitting

When i use this code only 30 documents are being displayed.How to append documents continuously without ant limitations here?

regards,

sasi

Subject: Error 500

Thanx Lai,

That was a silly mistake i did.

I have one more query.

I have all my documents displayed in boxed rows,each document in a cell.

But after adding some 180 documents i get

Error 500

HTTP Web Server: Lotus Notes Exception - Field is too large (32K) or View’s column & selection formulas are too large

Can u suggest some way to overcome this exception?

regards,

sasi

Subject: RE: Error 500

hmm 32k…

you can try this workaround.

  1. create a rich text field called “MyHTML”

  2. create an agent (“agt_LoadHTML”)

  3. on ur form, add this agent (“agt_LoadHTML”) into ur webqueryopen

==========================================

’ agt_LoadHTML

dim s as new notessession

dim vw as notesView

dim doc as notesdocument,context_doc as notesdocument

dim rtf as NotesRichTextItem

set vw=s.CurrentDatabase.getView(" -ur view here- ")

set context_doc=s.DocumentContext

set rtf=context_doc.GetFirstItem(“MyHTML”).

set doc=vw.GetFirstDocument

do while not doc is nothing

rtf.AppendText(doc.ColumnValues("- ur view column that have the HTML code here-"))

set doc=vw.GetnextDocument(doc)

loop

set s=nothing

Subject: Multiple rows in a document in web???

Hi Sasi,

I think its because ur server document had limit the number of document in a view to 30

To view the setting

  1. open names.nsf (on ur server)

  2. Configuration->Servers->All Server doc

  3. Double click on ur server doc

  4. goto tab internet protocol->Domino web engine->Conversion/Display->Default lines per view page

u can see 30 is set here.