私は次のコードを手に入れました
protected override void Render(HtmlTextWriter writer)
{
// Write the HTML into this string builder
StringBuilder sb = new StringBuilder();
StringWriter sw = new StringWriter(sb);
HtmlTextWriter hWriter = new HtmlTextWriter(sw);
base.Render(hWriter);
string pageHTML = sb.ToString();
// Write it back to the server
writer.Write(pageHTML);
if (Convert.ToBoolean(this.ViewState["SendEmail"]))
{
string HTML = "";
HTML = "<!DOCTYPE HTML PUBLIC '-//IETF//DTD HTML//EN'>";
HTML += "<html>";
HTML += "<head>";
HTML += "<meta http-equiv='Content-Type'";
HTML += "content='text/html; charset=iso-8859-1'>";
HTML += "<title>Order Information</title>";
HTML += "</head>";
HTML += "<body>";
HTML += "See attachment for information.";
HTML += "</body>";
HTML += "</html>";
MailMessage mail = new MailMessage("from@xxx.com", "to@xxx.com", "Subject", HTML);
mail.IsBodyHtml = true;
string path = @"d:\websites\plate.html";
using (StreamWriter sw11 = File.CreateText(path))
{
sw11.WriteLine(pageHTML);
}
mail.Attachments.Add(new Attachment(path));
SmtpClient client = new SmtpClient("192.168.1.127");
client.Send( mail );
Response.Write("<script>alert('Your information has been sent.')</script>");
this.ViewState["SendEmail"] = false;
}
}
ソリューションを新たにクリーンアップ/ビルドした後、送信ボタンを押すと、この関数が呼び出され、HTMLページが問題なくメールで添付ファイルとして送信されます。しかし、送信ボタンをもう一度押そうとすると、「System.IO.IOException:別のプロセスによって使用されているため、プロセスはファイル'd:\ website\plate.html'にアクセスできません」というメッセージが表示されます。ファイルを開こうとするとエラーが発生します。どうしたの?