Url is not captured

Hi,

While scraping a site, my requirement is to scrap the urls for all the records displayed after performing a search.
This means that when I click on the record the details for that particular record should be displayed.

The scenarios where I cannot capture any url is on a javascript function submit like onclick="this.form.submit();"

and a button submit where name looks like name="MatchingApplications:DataGrid_ResultSet:_ctl11:_ctl0"

Is it possible to capture urls for the similar conditions?

Thanks
Yogesh

The JavaScript is just making

The JavaScript is just making an HTTP request, so there's no reason you couldn't capture it. You do have to be aware if you need a valid session or cookie to follow that link, and if they are using POST parameters you will need to deal with that.