Post2° - web form not well formatted - question

Hello I post newly my question because I’ve not still found answer…

I’m working to a domino web application.

In my forms I call in HTML Head Content my stylesheet that is :“”

and in the fields properties (in the last tab) I put the class. At the same time for text style I use: Date:

well…

now, the problem is that when I call my form for the first time (so it has not been stiil saved) styles are ok.

but when i open the saved document styles are lose.

But the Html source code contains all styles recall.

Why this??

thankU in advance

Subject: Post2° - web form not well formatted - question

The path to your stylesheet is no good. It will work for form creation because that’s at one level:

http://SERVER/PATH/FormName?OpenForm

… it won’t work for a document, because that’s one level further down:

http://SERVER/PATH/View/DocID?OpenDocument

Re-state your stylesheet link properly, and you should be set. For example, you could use:

<LINK rel="stylesheet" type="text/css" href="/<Computed Value>/InStyle.css?OpenPage"

… where computed value = @WebDbName or somesuch.

HTH