Ichinisan
Lifer
There's a web page that our company uses to manage cable modems and equipment for our customers. There's a page that returns a poorly-formatted list of statistics for all customers in a specific region. I want to make a program that downloads this page and extracts the data from the HTML table, then allows me to work with the data and re-sort it. I've been doing this manually for a while, but it's VERY tedious. It's also frustrating because Notepad++ keeps crashing (the syntax highlighting gets confused when working with large amounts of data).
Anyway, this page requires a log-in, but doesn't use HTTPS (as far as I can tell). I don't know how to make my program simulate logging-in like a web browser. I found some code online that allows me to perform an HTTP Get request, but the server always returns an error (probably because I need to simulate logging-in somehow).
If any of you have done something like this with a VS2010 project before, please let me know if you have some pointers.
Anyway, this page requires a log-in, but doesn't use HTTPS (as far as I can tell). I don't know how to make my program simulate logging-in like a web browser. I found some code online that allows me to perform an HTTP Get request, but the server always returns an error (probably because I need to simulate logging-in somehow).
If any of you have done something like this with a VS2010 project before, please let me know if you have some pointers.