Link to home
Start Free TrialLog in
Avatar of Richard Kreidl
Richard KreidlFlag for United States of America

asked on

Read HTML from a website using Webrowser or another method

Hi I have a website that divided into 4 frames. I'm trying to create an application that will constantly run on my PC as a task looking for certain text in the HTML in a frame.

When it finds the text it would alert the user by presenting a pop-up message. This is basically a monitoring website that checking network nodes. Instead of staring at the screen looking for critical messages I would like to be notified when there is an alert.

What would be the best way to set this up?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Erick37
Erick37
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Alpesh Patel
Hi,

If you are browsing from internet then best way to create webrequest for the same url and get the pure HTML in response.

In next compare it with your value if match pop up to user.
Avatar of Richard Kreidl

ASKER

PatelAlpesh, could you show me the code for this?