0

我的 mvc 网站上有反馈表,我将此表发送到电子邮件。
在我的控制器中,我创建了 ErrorMessage 以防电子邮件发送失败,并创建 SuccessMessage 以防电子邮件发送成功

/*Feedback*/
[HttpGet]
public ActionResult Feedback(string ErrorMessage)
{
    if (ErrorMessage != null)
    {
    }

    return View();
}

[HttpPost]
public ActionResult Feedback(FeedbackForm Model)
{
    string ErrorMessage, SuccessMessage;

    //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("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);
        SuccessMessage = "Email sending was successful"
    }

    catch (Exception ex)
    {
        return RedirectToAction("Feedback", "Home", ErrorMessage = "Email sending failed");
    }

    return RedirectToAction("Feedback", "Home");
}

如何添加在我的视图中显示此消息?

4

3 回答 3

0

当您重定向到新页面时,请使用 TempData ,它将在重定向后的下一个请求中可用。将消息放入 TempData["Message"] 并在反馈视图中输出。为了更好地检查是否

     <% TempData["Message"] != null { %>
     <%= TempData["Message"] %>;
     <%} %>
于 2013-06-03T07:26:59.690 回答
0

使用TempData

您可以使用 TempDataDictionary 对象以与使用 ViewDataDictionary 对象相同的方式传递数据。但是,TempDataDictionary 对象中的数据仅从一个请求持续到下一个请求,除非您使用 Keep 方法将一个或多个键标记为保留。如果一个密钥被标记为保留,则该密钥将保留用于下一个请求。

TempDataDictionary 对象的典型用途是在重定向到另一个操作方法时从操作方法传递数据。例如,操作方法可能会在调用 RedirectToAction 方法之前将有关错误的信息存储在控制器的 TempData 属性(返回 TempDataDictionary 对象)中。然后下一个操作方法可以处理错误并呈现显示错误消息的视图。

[HttpPost]
public ActionResult Feedback(FeedbackForm Model)
{
    bool error = true;
    
    if(error){
        TempData["Message"] = "Error";
        TempData["Error"] = true;            
    }
    else{
        TempData["Message"] = "Success";
        TempData["Error"] = false;            
    }

    return RedirectToAction("Feedback", "Home");
}

[HttpGet]
public ActionResult Feedback()
{
    string message = TempData["Message"].ToString();
    bool error = Convert.ToBoolean(TempData["Error"]);

    var model = new FeedbackModel{Message = message, Error = error};

    return View(model);
}
于 2013-06-03T09:03:21.317 回答
0

您不能尝试将它们作为模型属性访问,如下所示:

<%= Model.ErrorMessage %>

<%= Model.SuccessMessage %>
于 2013-06-03T07:33:31.603 回答