随笔分类 -  mvc

摘要:@using RTSafe.Platform.ManagerCenterModules.ProjectModules.Models@using RTSafe.Platform.ManagerCenter.Core.Models;@{ ViewBag.Title = "index"; Layout = 阅读全文
posted @ 2017-06-26 15:16 飞刀软件 阅读(935) 评论(0) 推荐(0)
摘要:@Html.Raw() 会把字符串含有的html标签解析出来 例如:@Html.Raw("aaa</br>ccc") 输出结果就输出一行aaa,然后换行输出ccc 阅读全文
posted @ 2017-04-12 10:58 飞刀软件 阅读(1345) 评论(0) 推荐(0)
摘要:项目中做的项目使用的mvc的model验证,感觉最难的一个是remote验证,其它的比较简单就不说了: remote验证例子: /// <summary> /// ErrorMessage 表示验证不通过时显示的消息 ///AdditionalFields 表示验证的时候用哪个字段作为参数来传递(通 阅读全文
posted @ 2017-03-27 10:07 飞刀软件 阅读(229) 评论(0) 推荐(0)
摘要:在做项目遇到想要使用一组name相同的checkbox控件,后台自动获取选中控件的值,只能原生的html标签,不能使用mvc的@html.checkbox控件: 正确代码如下: <input type="checkbox" name="LicenseStatus" checked="checked" 阅读全文
posted @ 2017-03-22 14:07 飞刀软件 阅读(588) 评论(0) 推荐(0)