wwPageResponse::DocHeader

Creates an HTML document header, section and tag.

Example:
This FoxPro code:

foxpro
foxpro
Response.DocHeader("Hello World","css/westwind.css,css/myapp.css")

creates the following HTML document header:

html
html
<!DOCTYPE html> <html> <head> <title>Hello World</title> <link rel="stylesheet" type="text/css" href="css/westwind.css" /> <link rel="stylesheet" type="text/css" href="css/myapp.css" /> </head> <body>

You can also add additional head section content as a raw string. For example the following adds a couple of JavaScript incudes into the page:

foxpro
foxpro
lcScripts = ; [<script src="scripts/jquery.js" type="text/javascript" ></script>] + CRLF +; [<script src="scripts/ww.jquery.js" type="text/javascript" ></script>] Response.DocHeader("Hello World","css/westwind.css,css/myapp.css",lcScripts)
o.DocHeader(lcTitle, lcStyleSheets, lcHeaderItems, llNoOutput)

Parameters

lcTitle
A title for the page (maps to head element)</p> <p><strong>lcStyleSheets</strong><br /> A comma delimited list of stylesheets to add to the page.</p> <p><strong>lcHeaderItems</strong><br /> Any additional header items you want to have embedded into the page. Content is take as is and added to the end of the <head> section.</p> <h3 class="outdent" id="seealso">See also</h3> Class wwPageResponse </article> <hr /> <div class="float-end"> <a href="http://helpbuilder.west-wind.com" target="_blank"><img src="/docs/_kavadocs/images/docmonster.png" style="height: 2.5em"/></a> </div> <small> © West Wind Technologies, 2025 • Updated: 2025-03-12 <br /> <a href="mailto:support@west-wind.com?subject=Support: West Wind Web Connection - wwPageResponse::DocHeader&body=Project%3A%20West%20Wind%20Web%20Connection%0ATopic%3A%20wwPageResponse%3A%3ADocHeader%0A%0AUrl%3A%0Ahttps%3A%2F%2Fwebconnection.west-wind.com%2Fdocs%2F_3au1dryno.html">Comment or report problem with topic</a> </small> <br class="clearfix" /> <br /> <!-- End Rendered Content --> </div> </div> </div> <!-- End Markdown Monster Content --> </body> </html>