Click here to Skip to main content
15,890,123 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: XML problems Pin
George L. Jackson6-Nov-07 2:06
George L. Jackson6-Nov-07 2:06 
GeneralRe: XML problems Pin
kurt196-Nov-07 19:53
kurt196-Nov-07 19:53 
GeneralRe: XML problems Pin
George L. Jackson7-Nov-07 0:04
George L. Jackson7-Nov-07 0:04 
QuestionEncoding UTF-8 vs iso-8859-1 Pin
Hariharan21052-Nov-07 2:55
Hariharan21052-Nov-07 2:55 
AnswerRe: Encoding UTF-8 vs iso-8859-1 Pin
led mike5-Nov-07 7:22
led mike5-Nov-07 7:22 
AnswerRe: Encoding UTF-8 vs iso-8859-1 Pin
Erik Molenaar5-Nov-07 8:53
Erik Molenaar5-Nov-07 8:53 
GeneralRe: Encoding UTF-8 vs iso-8859-1 Pin
Hariharan21055-Nov-07 16:55
Hariharan21055-Nov-07 16:55 
GeneralRe: Encoding UTF-8 vs iso-8859-1 Pin
Erik Molenaar5-Nov-07 22:53
Erik Molenaar5-Nov-07 22:53 
here is a dummy example I made to show the principle.
neither dtd nor schema is provided and the xsl is
connected in the xml to allow you to open the xml in
ie and see the resulting (minimalistic) web page.
rem: the location of my xsl file is hard coded in
C:\Temp\
both files are saved on disk in utf-8


txt.xml:
<?xml version="1.0" encoding="UTF-8"?&ft;
<?xml-stylesheet type="text/xsl" href="C:\Temp\dummy.xsl"?>
<bla>üöä</bla>


dummy.xsl:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml" encoding="iso-8859-1" indent="yes" omit-xml-declaration="yes" media-type="text/html"/>
	<xsl:template match="bla">
		<html>
			<body>
				<xsl:value-of select="."/>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>


hope this helps
Erik
GeneralRe: Encoding UTF-8 vs iso-8859-1 Pin
Hariharan21055-Nov-07 23:06
Hariharan21055-Nov-07 23:06 
GeneralRe: Encoding UTF-8 vs iso-8859-1 Pin
Erik Molenaar5-Nov-07 23:17
Erik Molenaar5-Nov-07 23:17 
AnswerRe: Encoding UTF-8 vs iso-8859-1 Pin
George L. Jackson5-Nov-07 14:49
George L. Jackson5-Nov-07 14:49 
Question&quot;Pretty&quot; indentation of output using SQLXML managed classes? Pin
pmarfleet1-Nov-07 11:41
pmarfleet1-Nov-07 11:41 
AnswerRe: &quot;Pretty&quot; indentation of output using SQLXML managed classes? Pin
Stefan Troschuetz1-Nov-07 21:57
Stefan Troschuetz1-Nov-07 21:57 
GeneralRe: &quot;Pretty&quot; indentation of output using SQLXML managed classes? Pin
pmarfleet1-Nov-07 23:50
pmarfleet1-Nov-07 23:50 
GeneralRe: &quot;Pretty&quot; indentation of output using SQLXML managed classes? Pin
pmarfleet2-Nov-07 7:17
pmarfleet2-Nov-07 7:17 
QuestionHow to insert Comma between templates Pin
Sushant_Mathur28-Oct-07 23:29
Sushant_Mathur28-Oct-07 23:29 
AnswerRe: How to insert Comma between templates Pin
George L. Jackson29-Oct-07 1:45
George L. Jackson29-Oct-07 1:45 
GeneralRe: How to insert Comma between templates Pin
Sushant_Mathur29-Oct-07 2:41
Sushant_Mathur29-Oct-07 2:41 
GeneralRe: How to insert Comma between templates Pin
George L. Jackson29-Oct-07 3:00
George L. Jackson29-Oct-07 3:00 
GeneralRe: How to insert Comma between templates Pin
George L. Jackson29-Oct-07 3:39
George L. Jackson29-Oct-07 3:39 
GeneralRe: How to insert Comma between templates Pin
Sushant_Mathur29-Oct-07 3:48
Sushant_Mathur29-Oct-07 3:48 
QuestionProblem recognizing charcter entities Pin
Zoltan Aszalos28-Oct-07 21:41
Zoltan Aszalos28-Oct-07 21:41 
AnswerRe: Problem recognizing charcter entities Pin
George L. Jackson29-Oct-07 3:06
George L. Jackson29-Oct-07 3:06 
GeneralRe: Problem recognizing charcter entities Pin
Zoltan Aszalos29-Oct-07 4:22
Zoltan Aszalos29-Oct-07 4:22 
QuestionConvert MS Excel file to XML file Pin
sonigirish28-Oct-07 18:56
sonigirish28-Oct-07 18:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.