Posted: Wed May 14, 2014 9:04 pm Post subject: HTML Page in ESQL
Novice
Joined: 30 Mar 2014 Posts: 11
I am creating html page in esql using the below code for emailoutput node.
DECLARE line1 CHAR 'This is my line 1';
DECLARE line2 CHAR 'This is my line 2';
CREATE LASTCHILD OF OutputRoot.XMLNSC.html.body.p TYPE (XMLNSC.PCDataValue) VALUE line1;
CREATE LASTCHILD OF OutputRoot.XMLNSC.html.body.p NAME 'br' VALUE NULL;
CREATE LASTCHILD OF OutputRoot.XMLNSC.html.body.p TYPE (XMLNSC.PCDataValue) VALUE line2;
CREATE LASTCHILD OF OutputRoot.XMLNSC.html.body.p NAME 'br' VALUE NULL;
can anyone tell me how can I format this with HTML attributes like bgcolor ,border etc.
CREATE LASTCHILD OF OutputRoot.XMLNSC.html.body.p TYPE (XMLNSC.PCDataValue) VALUE line1 AS ref;
SET ref.(XMLNSC.Attribute)bgcolor = 'red';
SET ref.(XMLNSC.Attribute)border = '1';
-- etc...
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum