How to catch the data that is going to be displayed on IE?
-
In IE, when You type some URL in the address bar, corresponding web page will be displayed on screen. How to catch this web page data on IE, using c#.
If your IE is a browser control inside your app, you can examine the HTML from there. If it's just IE, you may well be screwed.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
In IE, when You type some URL in the address bar, corresponding web page will be displayed on screen. How to catch this web page data on IE, using c#.
Hi, i am also working in the similar type of problem. using SHDocVw.InternetExplorer, you can get the DOM object. from that you can get the entire source... i am just struggling to get the frame element values in Gamail because it uses some strange format. by all means you can just catch the data from the DOM.
Regards .....Jack