佚名通过本文主要向大家介绍了asp无组件上传,asp上传组件,asp组件,asp图片上传组件,asp无组件上传图片等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
问题: 写个给ASP用的com组件(dll式的)
描述:
描述:
我需要写个dll式的组件给ASP调用,功能很简单,只要实现以下函数:(要求支持MFC)
BOOL SendMsg(CString strMsg,CString strIP,DWORD dwIPPort)
{
CSocket msocket;
if(!msocket.Create())
return FALSE;
CSocketFile file(&msocket);
CArchive arIn(&file,CArchive::load);
CArchive arOut(&file,CArchive::store);
if(msocket.Connect(strIP,dwIPPort))
{
arOut<<strMsg;
arOut.Flush();
}
else
{
msocket.Close();
AfxMessageBox("连接服务器失败!");
return FALSE;
}
msocket.Close();
AfxMessageBox("发送成功!",MB_OK,NULL);
return TRUE;
}
多谢指教,最好能给我发个项目完整源码:powermouse@sina.com