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

XML / XSL

 
GeneralRe: Editing an XML node (C#) Pin
George L. Jackson19-Apr-06 12:57
George L. Jackson19-Apr-06 12:57 
AnswerRe: Editing an XML node (C#) Pin
George L. Jackson19-Apr-06 13:22
George L. Jackson19-Apr-06 13:22 
AnswerRe: Editing an XML node (C#) Pin
Michael A. Barnhart21-Apr-06 15:35
Michael A. Barnhart21-Apr-06 15:35 
Questionxml to xsd validation in vbscript Pin
Selvakumar.R19-Apr-06 1:27
Selvakumar.R19-Apr-06 1:27 
AnswerRe: xml to xsd validation in vbscript Pin
Sushant_Mathur3-May-06 2:10
Sushant_Mathur3-May-06 2:10 
QuestionBuilding a database from an XML Schema Pin
mvartere18-Apr-06 5:52
mvartere18-Apr-06 5:52 
QuestionXML C# Question Pin
seschu0118-Apr-06 5:22
seschu0118-Apr-06 5:22 
AnswerRe: XML C# Question Pin
George L. Jackson18-Apr-06 14:55
George L. Jackson18-Apr-06 14:55 
// s_invoices contains the XML
string s_invoices;
XmlDocument doc = new XmlDocument();
doc.LoadXml(s_invoices);

string xpath =
"/Order_Invoice_Outgoing_Array_Element" +
"/Order_Invoice_Outgoing_Element" +
"/interface_transaction/child::text()";

XmlElement root = doc.DocumentElement;

XmlText interface_transaction =
(XmlText)root.SelectSingleNode(xpath);

if (interface_transaction != null)
{
Console.WriteLine(interface_transaction.Value);
}

Please note that "interface_transaction" is an element node not an attribute node.


QuestionHelp Required from XML guys - XMLIsland Pin
Selvakumar.R17-Apr-06 20:49
Selvakumar.R17-Apr-06 20:49 
AnswerRe: Help Required from XML guys - XMLIsland Pin
Paddy Boyd17-Apr-06 23:50
Paddy Boyd17-Apr-06 23:50 
GeneralRe: Help Required from XML guys - XMLIsland Pin
Selvakumar.R18-Apr-06 1:57
Selvakumar.R18-Apr-06 1:57 
AnswerRe: Help Required from XML guys - XMLIsland Pin
George L. Jackson18-Apr-06 15:06
George L. Jackson18-Apr-06 15:06 
QuestionFOP Pin
Support12317-Apr-06 20:04
Support12317-Apr-06 20:04 
Questionfind rasult from xml Pin
discktopsultan@hotmail.com15-Apr-06 23:57
discktopsultan@hotmail.com15-Apr-06 23:57 
AnswerRe: find rasult from xml Pin
George L. Jackson17-Apr-06 3:19
George L. Jackson17-Apr-06 3:19 
GeneralRe: find rasult from xml Pin
discktopsultan@hotmail.com17-Apr-06 23:28
discktopsultan@hotmail.com17-Apr-06 23:28 
GeneralRe: find rasult from xml Pin
discktopsultan@hotmail.com18-Apr-06 1:55
discktopsultan@hotmail.com18-Apr-06 1:55 
GeneralRe: find rasult from xml Pin
George L. Jackson18-Apr-06 14:15
George L. Jackson18-Apr-06 14:15 
GeneralRe: find rasult from xml Pin
discktopsultan@hotmail.com18-Apr-06 23:36
discktopsultan@hotmail.com18-Apr-06 23:36 
QuestionI need a direction about XML/XSL/XSLT etc. Pin
Cristoff13-Apr-06 20:57
Cristoff13-Apr-06 20:57 
AnswerRe: I need a direction about XML/XSL/XSLT etc. Pin
Michael A. Barnhart14-Apr-06 11:49
Michael A. Barnhart14-Apr-06 11:49 
GeneralRe: I need a direction about XML/XSL/XSLT etc. Pin
Cristoff14-Apr-06 19:15
Cristoff14-Apr-06 19:15 
GeneralRe: I need a direction about XML/XSL/XSLT etc. Pin
Michael A. Barnhart15-Apr-06 1:25
Michael A. Barnhart15-Apr-06 1:25 
GeneralRe: I need a direction about XML/XSL/XSLT etc. Pin
Cristoff15-Apr-06 13:32
Cristoff15-Apr-06 13:32 
Questiongenerate xml view from vb.net Pin
sowbarnika10-Apr-06 6:23
sowbarnika10-Apr-06 6:23 

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.