hola carola 20.Nov.11 12:02 PM a Web browser Domino Designer7.0.3All Platforms
hello, I need to make an accesible web. I can't use neither javascript nor attributes in the tags.
If I make a form content-type = Notes and mark the code as html automatically the attributes are inserted in the body (<body text="#000000" bgcolor="#FFFFFF">).
If I mark content-type = HTML I can't accede to the form through ?OpenForm but if I accede through ?ReadForm the agent can't obtain the values of the fields of the form.
I need validate the content of the fields without using javascript so i tried doing this through an agent but this does not work.
Sub Initialize
Dim s As New NotesSession
Dim doc As NotesDocument
Set doc = s.DocumentContext
Print "Content-Type:text/html"
Print "<html>"
Print "<head>"
Print "</head>"
Print "<body>"
Print doc.field1(0)
Print "</body"
Print "</html>"
End Sub
The fields of the form are many, I can't send them by URL.