المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : WebClient - View navigation request (post data) before its sent to the server?



C# Programming
02-21-2010, 11:22 AM
I'm trying to see the data that my WebBrowser posting back to the server.

I'm navigating to http://www.finaid.org/calculators/costprojector.phtml[^ (http://www.finaid.org/calculators/costprojector.phtml)] (in my WebBrowser), filling in the few calculator boxes, then clicking calculate.

I have a breakpoint at the WebBrowser_Navigating event and checked the memory for both my WebBrowser and the event's WebBrowserNavigatingEventArgs but have been unable to find my test data. I see that the (WebBrowserNavigatingEventArgs) e.Url from the WebBrowser_Navigating event is attempting to open "http://www.finaid.org/calculators/scripts/costprojector.cgi" but I don't see the calculator parameters anywhere (the post content or request data).

Does anyone know where I can see this data or be able to point me in the right direction?

Thank you all in advance.

Matt