Gaurav Taneja

Great dreams... never even get out of the box. It takes an uncommon amount of guts to put your dreams on the line, to hold them up and say, "How good or how bad am I?" That's where courage comes in.

  Home  |   Contact  |   Syndication    |   Login
  90 Posts | 0 Stories | 78 Comments | 7 Trackbacks

News




Google RankGoogle PRâ„¢ - Post your Page Rank with MyGooglePageRank.com



The content on this site represents my own personal opinions and thoughts at the time of posting, and does not reflect those of my employer's in any way.

Disclaimer:- All postings in this blog is provided "AS IS" with no warranties, and confers no rights.

Archives

Post Categories

Image Galleries

Atlas

Error

OutLook

SharePointService

Usefull Site Links

public void ExtractNodes()

{

string HoldTheOrder = "";

//HttpPostedFile myFile = DatFile.PostedFile;

//if ((myFile.FileName == null) || (myFile.FileName.Equals("")))

//{

// lblConfirm.Text = "Path is not correct!";

// return;

//}

string DestinationPath = @"C:\XMLOutput.txt";  //// create a file for output

SWrtr = new StreamWriter(DestinationPath);

XmlTextReader XMLRdr = new XmlTextReader("c:\\gt.xml"); // path of the xml file

bool Flag;

while (XMLRdr.Read())

{

Flag = false;

switch (XMLRdr.NodeType)

{

case XmlNodeType.Element:

Flag = true;

HoldTheOrder = HoldTheOrder + ((HoldTheOrder.Length > 0) ? " -> " : "") + XMLRdr.Name;

break;

case XmlNodeType.Text:

break;

case XmlNodeType.EndElement:

Flag = false;

if (HoldTheOrder.LastIndexOf(" -> " + XMLRdr.Name) > -1) HoldTheOrder = HoldTheOrder.Substring(0, HoldTheOrder.LastIndexOf(" -> " + XMLRdr.Name));

break;

}

if (Flag)

{

SWrtr.Write(HoldTheOrder);

Response.Write("<br>" + HoldTheOrder);

SWrtr.WriteLine("");

}

}

//lblConfirm.Text = "File Successfully Creadted at [" + DestinationPath + "]";

SWrtr.Dispose();

SWrtr = null;

XMLRdr.Close();

XMLRdr = null;

}

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati
posted on Thursday, February 15, 2007 10:56 AM