MVC-4在服务器端更改ViewBag.Message?

时间:2013-05-15 09:19:07

标签: c# asp.net-mvc-4 viewbag

我是MVC编码的初学者  应用程序启动时,ViewBag.Message为:选择要上载的文件。

成功上传后,它会更改为:文件已成功上传!

有没有办法可以让它返回并在大约5秒钟后再次显示“选择要上传的文件”消息,而不使用任何javascript?  我想如果mvc有一些内置的时间功能,我可以使用吗?

https://github.com/xoxotw/mvc_fileUploader

我的观点:

@{
    ViewBag.Title = "FileUpload";
}

<h2>FileUpload</h2>

<h3>Upload a File:</h3>


    @using (Html.BeginForm("FileUpload", "Home", FormMethod.Post, new {enctype = "multipart/form-data"}))
    { 
        @Html.ValidationSummary();
        <input type="file" name="fileToUpload" /><br />
        <input type="submit" name="Submit" value="upload" />  
        @ViewBag.Message
    }

我的控制器:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Mvc_fileUploader.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            ViewBag.Message = "Choose a file to upload!";
            return View("FileUpload");
        }

        [HttpPost]
        public ActionResult FileUpload(HttpPostedFileBase fileToUpload)
        {

            if (ModelState.IsValid)
            {
                if (fileToUpload != null && fileToUpload.ContentLength > (1024 * 1024 * 1))  // 1MB limit
                {
                    ModelState.AddModelError("fileToUpload", "Your file is to large. Maximum size allowed is 1MB !");
                }

                else
                {
                    string fileName = Path.GetFileName(fileToUpload.FileName);
                    string directory = Server.MapPath("~/fileUploads/");

                    if (!Directory.Exists(directory))
                    {
                        Directory.CreateDirectory(directory);
                    }

                    string path = Path.Combine(directory, fileName);
                    fileToUpload.SaveAs(path);

                    ModelState.Clear();
                    ViewBag.Message = "File uploaded successfully!";
                }
            }

                return View("FileUpload");

        }



        public ActionResult About()
        {
            ViewBag.Message = "Your app description page.";

            return View();
        }

        public ActionResult Contact()
        {
            ViewBag.Message = "Your contact page.";

            return View();
        }
    }
}

1 个答案:

答案 0 :(得分:7)

简短的回答是。我猜是因为你是“新”你想要专注于MVC部分,但MVC和JavaScript是非常相互关联的,想想客户端(JavaScript)和服务器(MVC),你应该真正掌握两者来制作好的网站。

通常,服务器不会向浏览器触发事件​​,而是浏览器会发出请求。有一些方法可以让服务器使用SignalR之类的东西在客户端上引发事件,但在这种情况下这样做会有些过分。

最后......你想要实现的是一个客户端动作,即通知用户做某事。如果你在MVC中做到这一点,你会浪费网络带宽并增加延迟(考虑到服务器调用的价格昂贵),而实际上它是一个客户端操作,所以应该用JavaScript完成。

不要回避JavaScript。接受它。看看JQuery为你带来了很多繁重的工作。