Click here to Skip to main content
15,895,256 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: creating an xml file based on the parameters and XML Schema Pin
led mike4-Mar-08 12:03
led mike4-Mar-08 12:03 
Question[Message Deleted] Pin
Lavanya Madan3-Mar-08 20:27
Lavanya Madan3-Mar-08 20:27 
GeneralRe: getting data from XML using vb.net Pin
Christian Graus3-Mar-08 21:35
protectorChristian Graus3-Mar-08 21:35 
GeneralRe: [Message Deleted] Pin
Christian Graus3-Mar-08 22:16
protectorChristian Graus3-Mar-08 22:16 
QuestionNOOB XSD related question. Pin
rotovibe29-Feb-08 5:28
rotovibe29-Feb-08 5:28 
Generalreading xml file and write it into text file in C# Pin
adiveppanavar29-Feb-08 3:30
adiveppanavar29-Feb-08 3:30 
GeneralRe: reading xml file and write it into text file in C# Pin
led mike29-Feb-08 4:57
led mike29-Feb-08 4:57 
GeneralRe: reading xml file and write it into text file in C# Pin
adiveppanavar13-Mar-08 0:57
adiveppanavar13-Mar-08 0:57 
string file = "D:\\sampleXML2.xml";
XmlTextReader reader = new XmlTextReader(file);
while (reader.Read())
{
switch (reader.NodeType)
{
case XmlNodeType.Text:
Console.WriteLine(reader.Value);
break;
}



FileStream stream = new FileStream("D:\\manohar.txt", FileMode.OpenOrCreate, FileAccess.Write);
StreamWriter sw = new StreamWriter(stream);

sw.WriteLine(reader.Value);

sw.Close();
stream.Close();
}
Console.WriteLine("Enter Any Key");
Console.ReadLine();
}
GeneralRe: reading xml file and write it into text file in C# Pin
led mike13-Mar-08 5:56
led mike13-Mar-08 5:56 
GeneralCannot navigate to child element through xpath Pin
drweb8628-Feb-08 5:13
drweb8628-Feb-08 5:13 
GeneralRe: Cannot navigate to child element through xpath Pin
led mike28-Feb-08 5:54
led mike28-Feb-08 5:54 
GeneralDynamically generating XHTML using asp.net Pin
honeyss27-Feb-08 22:11
honeyss27-Feb-08 22:11 
GeneralRepost ignore Pin
led mike28-Feb-08 5:49
led mike28-Feb-08 5:49 
GeneralRe: Repost ignore Pin
honeyss28-Feb-08 17:55
honeyss28-Feb-08 17:55 
GeneralRe: Repost ignore Pin
led mike29-Feb-08 4:54
led mike29-Feb-08 4:54 
Questionhow to insert image data(bytes) into XML File Pin
Krishnraj26-Feb-08 20:18
Krishnraj26-Feb-08 20:18 
GeneralRe: how to insert image data(bytes) into XML File Pin
led mike28-Feb-08 5:45
led mike28-Feb-08 5:45 
GeneralFormating XML Pin
nickiii25-Feb-08 6:03
nickiii25-Feb-08 6:03 
GeneralRe: Formating XML Pin
led mike25-Feb-08 8:20
led mike25-Feb-08 8:20 
GeneralRe: Formating XML Pin
nickiii25-Feb-08 8:37
nickiii25-Feb-08 8:37 
GeneralRe: Formating XML Pin
led mike25-Feb-08 8:52
led mike25-Feb-08 8:52 
GeneralRe: Formating XML Pin
nickiii25-Feb-08 9:00
nickiii25-Feb-08 9:00 
GeneralXML to HTML Conversion in .Net Pin
honeyss24-Feb-08 18:37
honeyss24-Feb-08 18:37 
GeneralRe: XML to HTML Conversion in .Net Pin
led mike25-Feb-08 8:15
led mike25-Feb-08 8:15 
QuestionHow do we hide public properties when using a XMLweb service? Pin
pubududilena22-Feb-08 23:28
pubududilena22-Feb-08 23:28 

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.