![]() |
|
code scrapping and reusing the code c# - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: code scrapping and reusing the code c# (/Thread-code-scrapping-and-reusing-the-code-c) |
code scrapping and reusing the code c# - Somebody00 - 03-18-2014 Hi, is there any way i could like scrap one part of the HTML code from the page and then send it back to do some thing for me. Example: I'd like to make an app that every time i run it automaticly logs me in into my Gmail account. Thanks
RE: code scrapping and reusing the code c# - Psycho_Coder - 03-19-2014 Go ahead and use the Google api with your any programming language that it supports and read the documentation. Web scrapping is nothing new. Google for it and you'll get hundreds of tools to do the job and even cod examples. RE: code scrapping and reusing the code c# - Somebody00 - 03-19-2014 been googling for it and couldn't find anything maybe i just don't know where or how to search , could you please give me a hint? RE: code scrapping and reusing the code c# - ArkPhaze - 03-22-2014 Look into WebRequests. You don't "send back HTML", you POST data to the page and PHP usually takes care of creating a session for the login. |