Click here to Skip to main content
15,909,498 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: XSLT does not have min,max,abs methods. How do i use EXSLT ? Pin
Phil Hobgen7-Feb-05 23:30
Phil Hobgen7-Feb-05 23:30 
Generalapp. config file Pin
Rekha Patel6-Feb-05 8:30
Rekha Patel6-Feb-05 8:30 
GeneralMicrosoft Real-Time Communications API Pin
jerry0davis4-Feb-05 4:46
jerry0davis4-Feb-05 4:46 
Generalmsxsl.exe output to a file Pin
Anonymous3-Feb-05 15:41
Anonymous3-Feb-05 15:41 
GeneralRe: msxsl.exe output to a file Pin
Phil Hobgen6-Feb-05 10:23
Phil Hobgen6-Feb-05 10:23 
Generaldiffrent result everytime Pin
Ahmed Galal3-Feb-05 1:38
Ahmed Galal3-Feb-05 1:38 
GeneralIs XML 3.0 is faster than XML 2.0 Pin
santu1-Feb-05 18:50
santu1-Feb-05 18:50 
GeneralProblems with a well formed XML Pin
Rekha Patel1-Feb-05 16:35
Rekha Patel1-Feb-05 16:35 
Hi..
I am having some problems with the xmldocument. Below is my code...can anyone tell me why the output is not well formed..this is my ouput for the following code...

<?xml version="1.0" ?>
- <Persons>
- <Person Name="v" Age="00">
<Title="v" />
</Person>
</Persons>

why is the Title element not complete???


XmlDocument xmlDoc = new XmlDocument();
XmlDeclaration xmlDeclaration = xmlDoc.CreateXmlDeclaration("1.0",null,null);


XmlElement rootNode = xmlDoc.CreateElement("Persons");
xmlDoc.InsertBefore(xmlDeclaration, xmlDoc.DocumentElement);
xmlDoc.AppendChild(rootNode);

XmlElement Node = xmlDoc.CreateElement("Person");
Node.SetAttribute("Name", name);
Node.SetAttribute("Age", age);
xmlDoc.DocumentElement.AppendChild(Node);

XmlElement Node1 = xmlDoc.CreateElement("Title");
Node1.SetAttribute("Title", title);
Node.AppendChild(Node1);

Thank you

GeneralRe: Problems with a well formed XML Pin
Christian Graus1-Feb-05 17:08
protectorChristian Graus1-Feb-05 17:08 
GeneralRe: Problems with a well formed XML Pin
Christian Graus1-Feb-05 17:10
protectorChristian Graus1-Feb-05 17:10 
QuestionHow to add a datasource as a sub node in XML file Pin
Rekha Patel31-Jan-05 8:08
Rekha Patel31-Jan-05 8:08 
AnswerRe: How to add a datasource as a sub node in XML file Pin
DavidNohejl31-Jan-05 8:20
DavidNohejl31-Jan-05 8:20 
GeneralRe: How to add a datasource as a sub node in XML file Pin
Rekha Patel31-Jan-05 9:01
Rekha Patel31-Jan-05 9:01 
GeneralRe: How to add a datasource as a sub node in XML file Pin
DavidNohejl31-Jan-05 9:44
DavidNohejl31-Jan-05 9:44 
GeneralThanks a mil!!! Worked like a magic Pin
Anonymous31-Jan-05 14:02
Anonymous31-Jan-05 14:02 
GeneralHelp with converting Dataset to ADO schema..please! Pin
Dankarmy30-Jan-05 8:26
Dankarmy30-Jan-05 8:26 
GeneralUnicode encoding problem Pin
teo_xp29-Jan-05 2:27
teo_xp29-Jan-05 2:27 
GeneralRe: Unicode encoding problem Pin
teo_xp29-Jan-05 2:29
teo_xp29-Jan-05 2:29 
GeneralRe: Unicode encoding problem Pin
teo_xp29-Jan-05 2:30
teo_xp29-Jan-05 2:30 
GeneralRe: Unicode encoding problem Pin
DavidNohejl29-Jan-05 2:56
DavidNohejl29-Jan-05 2:56 
GeneralRe: Unicode encoding problem Pin
teo_xp29-Jan-05 10:45
teo_xp29-Jan-05 10:45 
GeneralRe: Unicode encoding problem Pin
DavidNohejl29-Jan-05 12:53
DavidNohejl29-Jan-05 12:53 
GeneralRe: Unicode encoding problem Pin
teo_xp30-Jan-05 3:14
teo_xp30-Jan-05 3:14 
GeneralXML serialisation Pin
Member 157171627-Jan-05 22:11
Member 157171627-Jan-05 22:11 
GeneralXML 's Question Pin
jzb26-Jan-05 14:00
jzb26-Jan-05 14:00 

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.