私はASP.Netのバスケットでちょうど生まれた赤ちゃんです。私はASP.NET 4.0のWrox Beginnersを読んでいて、System.Net.Mailを使ってメールを送ることについて読んでいました。System.Net.Mailでメールを送信
protected void Page_Load(object sender, EventArgs e)
{
MailMessage myMessage = new MailMessage(); // Getting Error
myMessage.Subject = "Test Message";
myMessage.Body = "Hello World, from Planet Wrox";
myMessage.From = new MailAddress("[email protected]", "Barack Obama");
myMessage.To.Add(new MailAddress("[email protected]", "George Bush"));
SmtpClient mySmtpClient = new SmtpClient();
mySmtpClient.Send(myMessage);
}
このコードをページのロードイベントに書き込みました。しかし、私はいずれかいただきました問題を伝えることができ
Server Error in '/' Application.
The specified string is not in the form required for an e-mail address. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.FormatException: The specified string is not in the form required for an e-mail address.
Source Error:
Line 11: protected void Page_Load(object sender, EventArgs e)
Line 12: {
Line 13: MailMessage myMessage = new MailMessage();
Line 14: myMessage.Subject = "Test Message";
Line 15: myMessage.Body = "Hello World, from Planet Wrox";
として最初の行でエラーを取得していますか?ここで
行動のこの種を促進するための私に恥が、フレーズ1「私はASP.Netバスケットに赤ちゃんを生まれています。」ちょっと面白い! –
@KileyNaro:ありがとうKilet :) – Sandy