I submit form in WebBrowser control this way:
WebBrowser1.Document.GetElementById("INS_TASK").InvokeMember("click");
where "INS_TASK" is submit button Id. Form submitted with method POST.
If check traffic by Fiddler there are two requests:
- Result 302, method POST
- Result 200, method GET
After that "Save file" dialog appears. How to hide this dialog and save downloading file without prompt?