weixin_39017744 2019-02-24 18:32 采纳率: 83.3%
浏览 1388
已采纳

ASP.NET MVC项目中如何在View里获得当前时间并上传?

想在Creat的View页面获取当前时间上传至数据库,请问怎么把时间那一栏改成自动获取并上传的?

  • 写回答

1条回答 默认 最新

  • threenewbee 2019-02-24 23:45
    关注

    直接在你的服务器上用
    DateTime.Now作为上传时间,而不从任何用户输入的地方读取就可以了。

    图片说明

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using Q749957.Models;
    using System.IO;
    using System.Text.RegularExpressions;
    
    namespace Q749957.Controllers
    {
        public class ProductController : Controller
        {
    
            DataClasses1DataContext db = new DataClasses1DataContext();
    
            //
            // GET: /Product
    
            public ActionResult Index()
            {
                var model = db.Products.Select(x => new ProductShowViewModel()
                {
                    CreateTime = x.createtime,
                    Description = x.description,
                    Name = x.name,
                    ID = x.id
                }).ToList();
                return View(model);
            }
    
            //
            // GET: /Product/Create
    
            public ActionResult Create()
            {
                return View();
            }
    
            //
            // POST: /Product/Create
    
            [HttpPost]
            public ActionResult Create(FormCollection fc)
            {
                if (Request.Files.Count > 0)
                {
                    var file = Request.Files[0];
                    var filename = Directory.GetFiles(Request.MapPath("~/Upload")).Count() == 0 ? 0 :
                        Directory.GetFiles(Request.MapPath("~/Upload"))
                        .Where(x => Regex.IsMatch(x, "\\d+"))
                        .Select(x => int.Parse(Regex.Match(x, "\\d+").Value))
                        .Max() + 1;
                    file.SaveAs(Request.MapPath("~/Upload/" + filename));
                    var prod = new Product()
                    {
                        createtime = DateTime.Now,
                        description = Request["Description"],
                        name = Request["Name"],
                        picid = filename
                    };
                    db.Products.InsertOnSubmit(prod);
                    db.SubmitChanges();
                    db.Comments.InsertOnSubmit(new Comment() { comment1 = "good!", nickname = "Jack", prodid = prod.id });
                    db.SubmitChanges();
                    db.Comments.InsertOnSubmit(new Comment() { comment1 = "very good!", nickname = "Jim", prodid = prod.id });
                    db.SubmitChanges();
                }
                return View();
            }
    
            //
            // GET: /Product/Show/1
    
            public ActionResult Show(int id)
            {
                var prod = db.Products.Single(x => x.id == id);
                var model = new ProductShowViewModel()
                {
                    ID = prod.id,
                    Comments = db.Comments.Where(x => x.prodid == id)
                        .Select(x => new CommentItem
                        {
                            Comment = x.comment1,
                            NickName = x.nickname
                        }).ToList(),
                    CreateTime = prod.createtime,
                    Description = prod.description,
                    Name = prod.name,
                    Image = Request.ApplicationPath + "upload/" + prod.picid.ToString()
                };
                return View(model);
            }
    
        }
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 identifier of an instance of 类 was altered from xx to xx错误
  • ¥100 反编译微信小游戏求指导
  • ¥15 docker模式webrtc-streamer 无法播放公网rtsp
  • ¥15 学不会递归,理解不了汉诺塔参数变化
  • ¥30 软件自定义无线电该怎样使用
  • ¥15 R语言mediation包做中介分析,直接效应和间接效应都很小,为什么?
  • ¥15 Jenkins+k8s部署slave节点offline
  • ¥15 如何实现从tello无人机上获取实时传输的视频流,然后将获取的视频通过yolov5进行检测
  • ¥15 WPF使用Canvas绘制矢量图问题
  • ¥15 用三极管设计一个单管共射放大电路