1

MVC サイトにフィードバック フォームがあり、このフォームをメールで送信しています。
メール送信に失敗した場合はエラーメッセージ、送信に成功した場合は成功メッセージを表示したい。私はViewBagを介してそれを作ろうとします。
コントローラーに追加しました

    [HttpGet]
    public ActionResult Feedback(string Message)
    {
        if (Message != null)
        {
            if (Message == "No")
            {
                ViewBag.Message = "Error";
            }

            if (Message == "Yes")
            {
                ViewBag.Message = "Success";
            }
        }

        else
        {
            ViewBag.Message = null;
        }

        return View();
    }

    [HttpPost]
    public ActionResult Feedback(FeedbackForm Model)
    {
        string Message;

        //email
        System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();
        msg.BodyEncoding = Encoding.UTF8;
        msg.Priority = MailPriority.High;

        msg.From = new MailAddress(Model.Email, Model.Name);
        msg.To.Add(/*"evaluation@corepartners.ru"*/"tayna-anita@mail.ru");

        msg.Subject = @Resources.Global.Feedback_Email_Title + " " + Model.Company;
        string message = @Resources.Global.Feedback_Email_From + ": " + Model.Name + "\n"
                        + @Resources.Global.Feedback_Email + ": " + Model.Email + "\n"
                        + @Resources.Global.Feedback_Phone + ": " + Model.Phone + "\n"
                        + @Resources.Global.Feedback_Company + ": " +  Model.Company + "\n\n"
                        + Model.AdditionalInformation;
        msg.Body = message;
        msg.IsBodyHtml = false;

        //Attachment
        if (Model.ProjectInformation != null && !(String.IsNullOrEmpty(Model.ProjectInformation.FileName)))
        {
            HttpPostedFileBase attFile = Model.ProjectInformation;
            if (attFile.ContentLength > 0)
            {
                var attach = new Attachment(attFile.InputStream, attFile.FileName);
                msg.Attachments.Add(attach);
            }
        }

        SmtpClient client = new SmtpClient("denver.corepartners.local", 55);
        client.UseDefaultCredentials = false;
        client.EnableSsl = false;

        try
        {
            client.Send(msg);
            return RedirectToAction("Feedback", "Home", Message = "Yes");
        }

        catch (Exception ex)
        {
            return RedirectToAction("Feedback", "Home", Message = "No");
        }
    }

そして私は自分の見解に追加しました

    @if (ViewBag.Message != null)
    {
        <p style="color: red;">@ViewBag.Message</p>
    }

しかし、いずれにしてもメッセージは表示されません。
どうしたの?

4

1 に答える 1

3

これを試して:

return RedirectToAction("Feedback", "Home", new { Message = "Yes" });
于 2013-06-03T12:19:02.417 に答える