Click here to Skip to main content
15,792,461 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: displaying xml file on wpf Pin
Richard MacCutchan8-Jul-13 22:28
mveRichard MacCutchan8-Jul-13 22:28 
QuestionChecking for valid xml file. Pin
Mark F.18-Jun-13 8:53
Mark F.18-Jun-13 8:53 
AnswerRe: Checking for valid xml file. Pin
Bernhard Hiller19-Jun-13 21:52
Bernhard Hiller19-Jun-13 21:52 
GeneralRe: Checking for valid xml file. Pin
Mark F.20-Jun-13 14:52
Mark F.20-Jun-13 14:52 
QuestionParsing HTML Pin
PIEBALDconsult18-Apr-13 6:15
professionalPIEBALDconsult18-Apr-13 6:15 
AnswerRe: Parsing HTML Pin
Richard Deeming18-Apr-13 6:56
mveRichard Deeming18-Apr-13 6:56 
GeneralRe: Parsing HTML Pin
PIEBALDconsult18-Apr-13 17:18
professionalPIEBALDconsult18-Apr-13 17:18 
GeneralRe: Parsing HTML Pin
Richard Deeming19-Apr-13 2:46
mveRichard Deeming19-Apr-13 2:46 
No need to make that call to R'lyeh yet; the HAP makes parsing an HTML document simple:
C#
HtmlDocument doc = new HtmlDocument();
doc.Load(@"path\to\your\file.htm");

foreach(HtmlNode link in doc.DocumentElement.SelectNodes("//a[@href"])
{
   string url = link["href"].Value;
   Fhtagn(url);
}




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionXML data representation Pin
Neo101015-Apr-13 1:39
Neo101015-Apr-13 1:39 
AnswerRe: XML data representation Pin
Kenneth Haugland5-Apr-13 3:13
professionalKenneth Haugland5-Apr-13 3:13 
QuestionHow to retrieve data from XLS/TXT file and DB? Pin
David venewald27-Feb-13 17:09
David venewald27-Feb-13 17:09 
AnswerRe: How to retrieve data from XLS/TXT file and DB? Pin
jinzai17-Jul-14 14:14
jinzai17-Jul-14 14:14 
Questionrunning xml Pin
Member 963455215-Jan-13 4:02
Member 963455215-Jan-13 4:02 
AnswerRe: running xml Pin
Abhishek Pant15-Jan-13 4:45
professionalAbhishek Pant15-Jan-13 4:45 
QuestionExecute a task scheduler stop command (to kill one task)before starting the upgrade. Pin
Prasanth Vijayan9-Dec-12 21:07
Prasanth Vijayan9-Dec-12 21:07 
Questionsharing data by using xml Pin
El Dev28-Nov-12 5:36
El Dev28-Nov-12 5:36 
AnswerRe: sharing data by using xml Pin
Zaf Khan28-Nov-12 18:12
Zaf Khan28-Nov-12 18:12 
GeneralRe: sharing data by using xml Pin
El Dev28-Nov-12 20:50
El Dev28-Nov-12 20:50 
QuestionCould not find a part of the path 'C:\MyProject\xml\command.dtd'. Pin
El Dev27-Nov-12 23:18
El Dev27-Nov-12 23:18 
AnswerRe: Could not find a part of the path 'C:\MyProject\xml\command.dtd'. Pin
Richard MacCutchan28-Nov-12 1:04
mveRichard MacCutchan28-Nov-12 1:04 
GeneralRe: Could not find a part of the path 'C:\MyProject\xml\command.dtd'. Pin
El Dev28-Nov-12 1:29
El Dev28-Nov-12 1:29 
GeneralRe: Could not find a part of the path 'C:\MyProject\xml\command.dtd'. Pin
Richard MacCutchan28-Nov-12 2:11
mveRichard MacCutchan28-Nov-12 2:11 
QuestionXml generating from XSD schema Pin
muntte16-Oct-12 13:18
muntte16-Oct-12 13:18 
AnswerRe: Xml generating from XSD schema Pin
Jim Meadors13-Nov-12 21:12
Jim Meadors13-Nov-12 21:12 
AnswerRe: Xml generating from XSD schema Pin
jinzai17-Jul-14 14:18
jinzai17-Jul-14 14:18 

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.