摘要:
五、文章在【ArticleController】添加[UserAdd()]action/// <summary> /// 添加文章 /// </summary> [UserAuthorize] public ActionResult UserAdd() { return View(new Article() { CommonModel = new CommonModel() }); }右键添加模型类为Article的强类型视图UserAdd.cshtml。编辑器选用KindEditor(国... 阅读全文
摘要:
一般来说一个网站最主要的部分就是文章,实现了文章功能网站的核心也就出来了。今天开始做文章功能,首先文章应包含以下字段。字段名称类型必填默认值说明ArtickeId文章idInt[key]是CommonModelId公共模型IdInt是Source来源string(255)Author作者string(50)Intro摘要string(255)Content内容string是CommonModel公共模型数据CommonModelvirtual在Models文件夹点右键添加Article模型using System.ComponentModel.DataAnnotations;using Sys 阅读全文