Hi,
Is it possible to have a header and a footer without the DIV tags opening and closing
I have created a Source procedure as below, which a stripped down version without the
calls to DivHeader and DivFooter. eg.
p_web.DivHeader(loc:divname,Choose(p_web.IsMobile(),'',''),,,,1)
p_web.DivFooter(,lower('PageHeaderTag_div'))
But it does not insert the HTML
TVC_Header PROCEDURE (NetWebServerWorker p_web) ! Declare Procedure
loc:divname string(252)
loc:parent string(252) ! should always be a lower-case string
packet StringTheory
timer long
loc:options StringTheory ! options for jQuery calls
CODE
GlobalErrors.SetProcedureName('TVC_Header')
packet.append(p_web.AsciiToUTF(|
'<<!-- Net:f:tvc_header.htm --><13,10>'&|
'',net:OnlyIfUTF,net:StoreAsAscii))
do SendPacket
GlobalErrors.SetProcedureName()
Return
SendPacket routine
p_web.ParseHTML(packet,1,0,NET:NoHeader)
packet.SetValue('')
thanks
Johan