![]() |
|
|
|
#1 |
|
Hi Bill,
Thanks for your help. I found out that basically internet explorer uses a default.xsl file to display an xml. For instance, I wrote an xml file, and when I click on it with explorer, it shows a default display with expanding and collapsing with a default.xsl. I wanted to customize that display with my own display instead of the default. That was basically what I wanted to do. Thanks, Bob On Sun, 22 Jun 2003 21:12:35 -0400, Bill Sneddon <> wrote: >Not quite sure what you are trying to do. >You can use XSL to format XML any way you please. >Here is an simple answer It meet the criteria above. >I would need more details of what you are trying to >acomplish to help more. > > >Bill > ><!-- start of XML file --> ><?xml version="1.0"?> ><?xml-stylesheet type="text/xsl" href="dumb.xsl"?> ><paragraph>hello world</paragraph> > ><!--start of XSL file should be called dumb.xsl and in same directory as >XML to work --> ><xsl:stylesheet version="1.0" >xmlns ><xsl:template match="/"> ><html> ><paragraph> ><font color="red"> ><xsl:value-of select="."/> ></font> ></paragraph> ></html> ></xsl:template> ></xsl:stylesheet> > > > >Bob Johnson wrote: >> In internet explorer. I can view an xml file in a .xml format. >> My question is. Say, I have <paragraph>hello world</paragraph>. >> But, I want to have hello world to have say the color red. How can I >> do that in an xml file. I want to be able to have the tags there at >> the same time make the "hello world" red. I can do it in html, but >> then I won't have the <paragraph></paragraph> tags there. I want to >> be able to have the tags and make the text red. Can anyone tell me >> how you can do that? And if not, why you can't do that? My first >> guess is that I would need to write a plug-in to have that feature. >> >> Thanks, >> Bob >> Bob Johnson |
|
|