Subject: Multiple HTML content in XML for Rendering
From: "Senthilkumaravelan K" <skumaravelan@xxxxxxxxxxxxxx>
Date: Wed, 21 Mar 2007 13:43:21 -0700
|
Hi ,
I have xml which might contain multiple nodes with different HTML content,
How Do I render the information in a browser using XSLT ? Is it
possible in first place? Any approach would be helpful.
My XML would be like
<contents>
<content>
<Content><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">

<html>
<head>
<title>Vielen Dank f|r Ihre Registrierung bei
Apple.</title>
</head>

<body bgcolor="#FFFFFF">

</body>
Hello World First HTML
</html></Content>
<Content><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">

<html>
<head>
<title>Vielen Dank f|r Ihre Registrierung bei
Apple.</title>
</head>

<body bgcolor="#FFFFFF">


 Hello World 2
</body>
</html></Content>
There are two content nodes with 2 different HTML content in it.
How this can be rendered as HTML in a browser?
Thanks,
Senthil
|