Tagged Questions
1
vote
1answer
4k views
How can I access PostData from WebBrowser.Navigating event handler?
I've got a windows form in Visual Studio 2008 using .NET 3.5 which has a WebBrowser control on it. I need to analyse the form's PostData in the Navigating event handler before the request is sent. ...
0
votes
1answer
446 views
C# webbrowser postData -> default
I have a problem sending postData while user click on button on some webpage. It means that postData cannot be Null. Here is the code:
webBrowser1.Navigate(e.Url, "_self", default(byte[]), headers);
...