摘要: public class TradeModel { [Display(Name = "编号")] public int Id { get; set; } [Display(Name = "物品名称")] [StringLength(200, MinimumLength = 1)] [Required 阅读全文
posted @ 2021-10-27 15:09 哈佛 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 图片路径 在wwwroot 下才能读取 图片控件上传图片保存方法 var result = ""; try {//接收post传来的base64 图片信息 string base64img = image; if (string.IsNullOrEmpty(base64img) || !base64 阅读全文
posted @ 2021-10-27 14:55 哈佛 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 页面绑定 //第一条 无 如果后台绑定类型INT 会报错 @Html.DropDownList("Classify", (ViewBag.Classify), "无", new { @class = "form-control" }) 推荐使用 <select asp-for="Classify" 阅读全文
posted @ 2021-10-27 14:43 哈佛 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Netcore5 发布IIS 问题1:报404错误 解决方案:需要安装 AspNetCoreModeuleV2 文档地址 https://dotnet.microsoft.com/download/dotnet/5.0 问题2:报错信息: Error. An error occurred while 阅读全文
posted @ 2021-10-27 14:26 哈佛 阅读(1274) 评论(0) 推荐(0) 编辑