INTERNET_PORT nPort = 80;
CInternetSession session;
DWORD dwRet;
CHttpConnection* pConnection = NULL;
CHttpFile* pFile;
char buf3[240] = {0x00};CString strHost = "125.88.125.209";try {
pConnection = session.GetHttpConnection(strHost,nPort);
pFile = pConnection->OpenRequest(CHttpConnection::HTTP_VERB_POST,(LPCSTR)strURL);
pFile->AddRequestHeaders(strHead);
TRACE("%s",strHead);
  BOOL result = pFile->SendRequest(NULL,0, (LPVOID)nData,ilen); //发参数
pFile->QueryInfoStatusCode(dwRet);if (dwRet == HTTP_STATUS_OK) //读返回信息
{
  }
  }通过监视http数据包,发现在头中多了,Catch-control: no-cache这一项,请教高手,如果把这一项在发头http包的时候去掉????急。