i have an excel macro that i am converting to c#. currently i am manually going to an already opened IE window, copying everything from it (html table) and pasting into excel worksheet. then i am manipulating the data. this works very well because pasting an html table into excel works fine!
i am trying to do the same thing in c# WITHOUT excel. i need to:
- get data from IE window
- read it into a datatable (in a similar way that if i were copying and pasting html table into excel sheet)
do you know if this is easily possible to do?
the TITLE of the IE window will be the same all the time.