How to monitor Website Info from Windows Application using C#?

awsok

Member
Joined
Mar 3, 2005
Messages
8
Programming Experience
1-3


Hi all friends
confused.gif


I am trying to develop a Windows Application in C# that will opens new instance of Internet Explorer when first start up (or when the user choose start Recording from the Action menu). That’s done so far using

Process.Start("IExplore.exe", "about:blank");

Then when the user type in the URL address in the address bar of the IE (or navigating to new sub links) of any web page on the Internet... then the Windows Application can monitor and record information about the web page being visited...

For example the Windows application can record:

URL of the page

Title of the page
Method used GET of POST
Cookies is there any
Names and Values of the Web Forms Control submitted to the server if possible.
Etc…


If you have any idea or general advice to start me up with “no matter how much small" please post it here and I will be very much thankful

Greetings
Aws
 
I'm not sure if you noticed the name of this forum, but it's 'VB.NET Forums'. This is a site dedicated to VB.NET. There are many sites dedicated to C# :).
That being said, without some very serious messaging and APIs, it will be hard to do what you have requested.
You can build your own browser however using the WebBrowser control.
 
Back
Top