logo

Response

« Return to the main article

You are viewing this page out of context. To see it in the context it is intended please click here.

About This Page

Reply posted by Peter on Thu 28 Oct 2004 in response to Putting Style in the Hand of the User

Putting HTML in the hands of the developer

I know the answer to this must be already someware in codestore... but sorry I
did not find it.
how do you avoid Domino putting his own HTML tags at the beginning of your
pages? the extra <HEAD> and <BODY> tags are giving the gratest problems with
accessibility validation


i have a form with pass-through HTML that begins like this:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it">
<head>


but the HTML of the web generated page is


<HTML>
<HEAD>
***eventually the <SCRIPT tag***
</HEAD>
<BODY TEXT="000000" BGCOLOR="FFFFFF">
<FORM METHOD=post ACTION="/portale/nuovo/home.nsf/formlaura?OpenForm&Seq=1"
NAME="_formlaura">
<INPUT TYPE=hidden NAME="__Click" VALUE="0">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it">
<head>


how can I get rid of the extra HTML? grazie mille!