本文转自:http://www.cppblog.com/kyelin/archive/2007/05/08/23628.html //==========> 初始化回话HINTERNET hSession=::InternetOpen("Http",PRE_CONFIG_INTERNET_ACCESS,"",INTERNET_INVALID_PORT_NUMBER,0);if(hSession==NULL){AfxMessageBox("Internet session initalization failed!");return 1;}//==========> 创建链接HINTERNET hConnect=::InternetConnect(hSession,pDlg->m_strServer,INTERNET_INVALID_PORT_NUMBER,"","",INTERNET_SERVICE_HTTP,0,0);if(hConnect==NULL){AfxMessageBox("Internet connect initialization failed!");VERIFY(::InternetCloseHandle(hSession));return 1;}//==========> 打开请求链接HINTERNET hHttpFile=:
...
继续阅读
(8)