I am working on a screen scraping application and am trying to interop with a site using a service/app. The login screen has the following key elements:

--User name

<input id="s_1_1_11_0" type="text" maxlength="50" tabindex="2997" style="width:220" value="" name="s_1_1_11_0">

--Password

<input id="s_1_1_12_0" type="password" tabindex="2997" style="width:220" value="" name="s_1_1_12_0">

--Submit button

<a id="OkButton" tabindex="2997" href="JavaScript:SWESubmitForm(document.SWEForm1_0,s_0,"s_1_1_14_0","VRId-0")">OK</a>

Typically the Submit button just does a post back and a set of key-value pairs can be appended to the HttpWebRequest URL. But in this case the Submit button is actually an anchor tag which calls a javascript function which does the form submit - how can I simulate this in C# using HttpWebRequest?

Thanks,

link|improve this question

75% accept rate
feedback

1 Answer

Either reverse engineer the Javascript call of SWESubmitForm by following its code path and seeing how its structuring its post data. Or, you could cheat and just use Fiddler2 and look at what its posting after you click the button and then just use the HttpWebRequest to structure your request the same as what Fiddler shows.

link|improve this answer
Thanks Evan - I have been using Fiddler, and this login page is making multiple requests to load cached/top/etc frames (its a legacy site) as well as other assorted CONNECT requests. Would I have to simulate everyone of these Get requests? – fjxx Nov 2 '11 at 22:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.