Possible Duplicate:
Parse a .Net Page with Postbacks
I have a web site I want to parse (it belongs to my client so no copyrights or so are a problem ). It has many links I want to call and parse the html returned. But those links are actually doPostBack
javascript calls. So is there any way I can create such a call through Java and get the result html?
website: http://myclient.something/ProductCatalog.aspx?family=20
javascript call:
__doPostBack('ctl00$wpmMain$wp1312556404$wp432345009$tvwCatalog','sBLG')"
How can I simulate that javascript call?