题目:【问题2】(每空1分)以下是该邮件系统部分asp代码,已知登入该邮件系统的邮箱账号是test@mwst.cc,请将(8)〜(15) 的空缺代码补充完整。<html><head><title>发送电子邮件</title></head><body><%towho=trim(request.(8)("towho")subject=trim(request.form("(9)")content=trim(request.form("content")if towho<>"" then set myMail=(10).createObject("CDONTS.Newmail") myMail.from="(11)" myMail.to=(12) myMail.subject=subject myMail.body=(13) myMail.send set myMail=nothing (14).Write "你的邮件已经发往" & towhoelse Response.Write "你请输入你所要发往的邮箱地址"(15)</body></html>(8)~(15)备选答案:A.content B.serverC.ResponseD.test@mwst.ccE.end if F.form G.subjectH.towho