www.pudn.com > Jianasyhttpclient.rar > DlgUrl.cpp
// DlgUrl.cpp : implementation file
//
#include "stdafx.h"
#include "asyhttpclient.h"
#include "DlgUrl.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgUrl dialog
CDlgUrl::CDlgUrl(CWnd* pParent /*=NULL*/)
: CDialog(CDlgUrl::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgUrl)
m_strURL = _T("");
//}}AFX_DATA_INIT
}
void CDlgUrl::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgUrl)
DDX_Text(pDX, IDC_EDIT1, m_strURL);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgUrl, CDialog)
//{{AFX_MSG_MAP(CDlgUrl)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgUrl message handlers