Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithInspecting the source code for the webpage reveals this:
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
So, if you can build an HTTP node that submits the entire form, you can just set eventArgument to whatever page you desire.
This is going to take a good bit of work because the form contains a large number of hidden parameters.