How do i Download Web Page using C (not with libcurl), OS: Win32
Download Web Page
c++downloadwebpagewinapi
Related Question
- Java – Download a file with Android, and showing the progress in a ProgressDialog
- Javascript – Download File Using JavaScript/jQuery
- Javascript – Download a file from NodeJS Server using Express
- What does the ??!??! operator do in C
- Javascript – How to trigger a file download when clicking an HTML button or JavaScript
- Javascript – How to download a file with Node.js (without using third-party libraries)
- Python – Download large file in python with requests
- Do I need Content-Type: application/octet-stream for file download
Best Solution
To download a web page, you need two things:
For the first item, have a look at the socket API. You need to open a socket, send some data using send(), receive data from the webserver.
For the second item, you need to understand the http protocol.