WebGrabber HeaderHTML and FooterHTML Properties Ignored


HeaderHTML and FooterHTML properties are ignored. 


Probable Cause


The <div style> HTML tag is set with single quotes.


Resolution


Enclose the style attributes appropriately for the development language you are using.


VBS:


Quotes in strings must be preceded by a quote.


<div style=""border: 1pt solid red; font: bold 12pt Arial;background: threedface; color: white; padding-Top: 5px; padding-Bottom: 6px; background-Image: url(http://www.meadroid.com/images/act_bg.jpg)""><center> --- Header for page <b> &p </b>--- </center></div>


C#:


Quotes in strings must be preceded by a backslash


<div style=\"border: 1pt solid red; font: bold 12pt Arial;background: threedface; color: white; padding-Top: 5px; padding-Bottom: 6px; background-Image: url(http://www.meadroid.com/images/act_bg.jpg)\"><center> --- Header for page <b> &p </b>--- </center></div>