I'm sure this request probably sounds familiar as I've seen a couple in the search results. I believe what I'm trying to do is unique and since no one else has asked it, I'm asking for help now.
I would like to have my application open a browser to a webpage that has a contact form. I would also like to include POST parameters. Is there any way to pre-populate a form with POST parameters without sending the actual request?
System.Diagnostics.Process.Start("IExplore.exe", "http://www.website.com/contactus.aspx?Subject=blah&Body=Test 1 2 3");
I tried the line above and it does load the page but the fields are not populated.
Any ideas?