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,