Click here to Skip to main content
15,880,608 members
Home / Discussions / XML / XSL
   

XML / XSL

 
Questioncreate multiple XML files Pin
hmise30-Nov-10 2:29
hmise30-Nov-10 2:29 
AnswerRe: create multiple XML files Pin
Pete O'Hanlon30-Nov-10 2:57
mvePete O'Hanlon30-Nov-10 2:57 
GeneralRe: create multiple XML files Pin
hmise30-Nov-10 3:20
hmise30-Nov-10 3:20 
GeneralRe: create multiple XML files Pin
Pete O'Hanlon30-Nov-10 4:00
mvePete O'Hanlon30-Nov-10 4:00 
GeneralRe: create multiple XML files Pin
hmise1-Dec-10 2:12
hmise1-Dec-10 2:12 
GeneralRe: create multiple XML files Pin
Pete O'Hanlon1-Dec-10 4:21
mvePete O'Hanlon1-Dec-10 4:21 
QuestionC# XML Query Website address based on Website name Pin
Wheels01224-Nov-10 6:01
Wheels01224-Nov-10 6:01 
AnswerRe: C# XML Query Website address based on Website name Pin
Tarun.K.S24-Nov-10 7:30
Tarun.K.S24-Nov-10 7:30 
XPath can be used. Here is how it works:

C#
String myXPath="/WEB_SITE/RECORD[Name='Homepage']/Address";   
XmlNodeList myNodeList=xmlDoc.SelectNodes(myXPath);      // This gives you the collection of Address nodes with Name as Homepage
XmlNode myXmlNode;

foreach (myXmlNode in xmlNodeList)
  {
    MessageBox.Show(myXmlNode.Value);                    // Displays the address 
  }


Cheers!
GeneralRe: C# XML Query Website address based on Website name Pin
Wheels01224-Nov-10 7:41
Wheels01224-Nov-10 7:41 
GeneralRe: C# XML Query Website address based on Website name Pin
Tarun.K.S24-Nov-10 7:50
Tarun.K.S24-Nov-10 7:50 
GeneralRe: C# XML Query Website address based on Website name Pin
Wheels01224-Nov-10 7:59
Wheels01224-Nov-10 7:59 
GeneralRe: C# XML Query Website address based on Website name Pin
Tarun.K.S24-Nov-10 18:18
Tarun.K.S24-Nov-10 18:18 
QuestionHow to populate an XmlNamespaceManager Pin
PIEBALDconsult13-Nov-10 5:17
mvePIEBALDconsult13-Nov-10 5:17 
AnswerRe: How to populate an XmlNamespaceManager Pin
Ger Hayden13-Nov-10 7:11
Ger Hayden13-Nov-10 7:11 
AnswerRe: How to populate an XmlNamespaceManager -- update Pin
PIEBALDconsult15-Nov-10 2:38
mvePIEBALDconsult15-Nov-10 2:38 
GeneralRe: How to populate an XmlNamespaceManager -- update Pin
lorenkins16-Nov-10 6:45
lorenkins16-Nov-10 6:45 
GeneralRe: How to populate an XmlNamespaceManager -- update Pin
PIEBALDconsult16-Nov-10 18:22
mvePIEBALDconsult16-Nov-10 18:22 
QuestionRead XML in C# Pin
ShafiqA3-Oct-10 19:02
ShafiqA3-Oct-10 19:02 
AnswerRe: Read XML in C# Pin
Ger Hayden16-Oct-10 3:06
Ger Hayden16-Oct-10 3:06 
AnswerRe: Read XML in C# Pin
PIEBALDconsult13-Nov-10 4:47
mvePIEBALDconsult13-Nov-10 4:47 
AnswerRe: Read XML in C# Pin
Tarun.K.S19-Nov-10 23:16
Tarun.K.S19-Nov-10 23:16 
GeneralRe: Read XML in C# Pin
Tarun.K.S20-Nov-10 1:54
Tarun.K.S20-Nov-10 1:54 
AnswerRe: Read XML in C# Pin
Yvan Rodrigues13-Dec-10 14:42
professionalYvan Rodrigues13-Dec-10 14:42 
Questionxml Pin
vijiajai25-Sep-10 19:37
vijiajai25-Sep-10 19:37 
QuestionNewDataset in XSD Pin
indian14320-Sep-10 5:05
indian14320-Sep-10 5:05 

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.