Hi,
When i use this code only 30 documents are being displayed.How to append documents continuously without ant limitations here?
regards,
sasi
Hi,
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.
create a rich text field called “MyHTML”
create an agent (“agt_LoadHTML”)
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
open names.nsf (on ur server)
Configuration->Servers->All Server doc
Double click on ur server doc
goto tab internet protocol->Domino web engine->Conversion/Display->Default lines per view page
u can see 30 is set here.