2.0으로 업그레이드 한 후에 컴파일을 하면서 이런 메세지가 뜨게 됩니다.
2.0 에서는 이 클래스가 제공되지 않고, System.Net.Mail.MailMessage 를 사용하시면 됩니다.
기존에 사용하던
MailMessage mailMessage = new MailMessage();
mailMessage.To = mailTo; //!< 수신자
mailMessage.From = mailFrom; //!< 송신자
mailMessage.Subject = mailSubject; //!< 제목
mailMessage.Body = mailBody; //!< 본문
mailMessage.BodyFormat = MailFormat.Html; //!< 본문 형식
SmtpMail.SmtpServer = "서버아이피";
SmtpMail.Send( mailMessage );
부분을 =>
MailAddress from = new MailAddress(mailFrom);
MailAddress to = new MailAddress(mailTo);
MailMessage mailMessage = new MailMessage(from, to);
mailMessage.Subject = mailSubject;
mailMessage.Body = mailBody;
SmtpClient client = new SmtpClient("서버아이피");
client.Send(mailMessage);
로 변경해 주시면 됩니다.
다시 컴파일 해 보세요. ^^
'프로그램&코딩' 카테고리의 다른 글
MSSQL 함수 사용 및 예문들 ( 자주 사용하는 ) (0) | 2009.03.30 |
---|---|
[코딩] 브라우저별 IE6 IE7 IE8 확인 프로그램 (0) | 2009.03.27 |
[자바스크립트] 입력한 글자가 숫자, 영어, 특수기호, 한글 인지 체크. (0) | 2009.03.27 |
[2.0] 'System.Configuration.ConfigurationSettings.AppSettings' is obsolete.... (0) | 2009.03.27 |
[2.0] System.Web.UI.Page.RegisterStartupScript(string, string).. (0) | 2009.03.27 |
[IE8] IE8에서 작동되지 않는 document.all -> document.getElementById 변경 (0) | 2009.03.25 |