Thoughts from Dan Miser RSS 2.0
 Thursday, June 01, 2006
In the last in the series of posts on writing a .NET application to communicate over HTTP, I thought I'd talk about HtmlAgilityPack (download available here). This tool allows you to write XPATH-like expressions to parse HTML files easily.

In my application, I upload a file and some form variables to a web server, which then responds with an HTML page. On that HTML page, buried in the middle, is a confirmation ID. In order to easily grab that ID and store it for later use, I use code like the following:


        private string CheckResponse(string response)
        {
            HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
            doc.LoadHtml(response);
            HtmlNodeCollection coll = doc.DocumentNode.SelectNodes("//td[@id]");
            if (coll == null) 
                return null;

            foreach (HtmlNode node in coll)
            {
                if (node.Attributes["id"].Value.Equals("confirmation"))
                {
                    return node.InnerText;
                }
            }

            return null;
        }
Thursday, June 01, 2006 8:18:00 AM (Central Standard Time, UTC-06:00)  #    Comments [2] -

Tracked by:
http://9nl-information.info/43346215/index.html [Pingback]
http://9nt-information.info/19204213/index.html [Pingback]
http://9na-information.info/80093481/car-audio-speaker-equipment.html [Pingback]
http://9nb-information.info/46453845/texas-school-directory.html [Pingback]
http://9nu-information.info/29498542/index.html [Pingback]
http://9ni-information.info/11625497/index.html [Pingback]
http://9ns-information.info/80374876/index.html [Pingback]
http://9ng-information.info/77423877/index.html [Pingback]
http://9ni-information.info/53720454/index.html [Pingback]
http://9nj-information.info/92941595/index.html [Pingback]
http://9qq-information.info/63458989/diesel-vestito.html [Pingback]
http://9ql-information.info/44916073/ripper-4.html [Pingback]
http://9ow-information.info/76587182/index.html [Pingback]
http://9ol-information.info/08727221/borgatta-casino-hotel-atlantic-city.html [Pingback]
http://9ou-information.info/72318349/che-contact-table.html [Pingback]
http://9oc-information.info/77757661/hosting-linux-vs-window.html [Pingback]
http://9ot-information.info/74725943/index.html [Pingback]
http://9sd-information.info/90764475/stefano-bises.html [Pingback]
http://9rr-information.info/27016761/index.html [Pingback]
http://9ro-information.info/03056081/index.html [Pingback]
http://9sg-information.info/21490469/index.html [Pingback]
http://9rn-information.info/78960652/index.html [Pingback]
http://9sd-information.info/26255285/index.html [Pingback]
http://9rw-information.info/06190244/index.html [Pingback]
http://9rw-information.info/42446697/latino-radio-advertising-for-physicians.htm... [Pingback]
http://9ra-information.info/46145855/yankees-baseball-on-radio.html [Pingback]
http://9ru-information.info/94395546/index.html [Pingback]
http://9se-information.info/20757769/index.html [Pingback]
http://9ry-information.info/78440194/index.html [Pingback]
http://9so-information.info/87509628/index.html [Pingback]
http://9rb-information.info/90028856/smith-house-resturant.html [Pingback]
http://9rf-information.info/37750564/index.html [Pingback]
http://9uafa-le-informazioni.info/97477284/actio-chat.html [Pingback]
http://9uaff-le-informazioni.info/31355800/index.html [Pingback]
http://9uafa-le-informazioni.info/29101579/calcio-mercato-on-line.html [Pingback]
http://9uaek-le-informazioni.info/07774920/atene-university-academy-and-national... [Pingback]
http://9uael-le-informazioni.info/52583480/editor-pes-5.html [Pingback]
http://9uafm-le-informazioni.info/31308176/ferilli-completamente-nuda.html [Pingback]
http://9uaec-le-informazioni.info/65785574/tri-nations.html [Pingback]
http://9uaet-le-informazioni.info/94697309/index.html [Pingback]
http://9uafa-le-informazioni.info/52701587/sblocco-lg-8550.html [Pingback]
http://9uaea-le-informazioni.info/53882122/index.html [Pingback]
http://9uafj-le-informazioni.info/92600415/gettext.html [Pingback]
http://9uaer-le-informazioni.info/71617360/crack-activation-coda-zuma-1-0.html [Pingback]
http://9uaek-le-informazioni.info/94878262/manager-coiffeur.html [Pingback]
http://9uahc-le-informazioni.info/59525396/index.html [Pingback]
http://9uahh-le-informazioni.info/41828148/index.html [Pingback]
http://9uahl-le-informazioni.info/16966135/index.html [Pingback]
http://9uaht-le-informazioni.info/21714424/index.html [Pingback]
http://9uagl-le-informazioni.info/54714355/index.html [Pingback]
http://9uahr-le-informazioni.info/39615363/meteo-egitto-sharm-el-sheik.html [Pingback]
http://9uagq-le-informazioni.info/20180888/index.html [Pingback]
http://9uahb-le-informazioni.info/02798811/index.html [Pingback]
http://9uago-le-informazioni.info/12451003/ventes.html [Pingback]
http://9uagh-le-informazioni.info/02569288/www-epatite.html [Pingback]
http://9uahb-le-informazioni.info/63720217/concorsi-pubblici-milano.html [Pingback]
http://9uagf-le-informazioni.info/67775797/la-brava.html [Pingback]
http://9uahe-le-informazioni.info/42194033/m-in-divisa.html [Pingback]
Navigation
Archive
<July 2008>
SunMonTueWedThuFriSat
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008
Dan Miser
Sign In
Statistics
Total Posts: 306
This Year: 21
This Month: 0
This Week: 0
Comments: 603
All Content © 2008, Dan Miser
DasBlog theme 'Business' created by Christoph De Baene (delarou)