.NET HTML Parser that supports Form posting -


i know there libraries used parse html htmlagilitypack unable find library supports form posting or executing javascript. want post html form windows form application don't want use webbrowser control or mshtml library.

there can multiple solutions here because act of creating post request , sending server separate act of parsing , executing javascript.

that said, if want create post request, there multiple options in .net, prominent being httpwebrequest/httpwebresponse classes, webclient class, higher level wrapper around httpwebrequest/httpwebresponse.

for executing javascript, assumption want execute javascript in page, , while there stand-alone .net javascript parsers/execution engines out there, don't work in page.

to end, mshtml library (even though said didn't want use it, imagine on server , have threading/com apartment issues?) choice, , can wrap access sufficiently in .net (although not easily, depending on needs) allow want.

if fan of webkit, can use .net wrapper webkit (webkit.net) in application. note: there issues of september 2011, might or might not addressed now.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -