摘要: public class RouteConfig { private static string[] namespaces = new string[1] { "Best.Site.Areas.BestPalace" }; public static void RegisterRoutes(RouteCollection routes) ... 阅读全文
posted @ 2017-08-07 20:43 小小高 阅读(997) 评论(0) 推荐(0)
摘要: var IDCard = function () { //---------------------------------------------------------- // 功能:根据身份证号获得出生日期 // 参数:身份证号 psidno // 返回值: // 出生日期 //----------------------... 阅读全文
posted @ 2017-08-07 14:40 小小高 阅读(290) 评论(0) 推荐(0)
摘要: //检查身份证号码是否存在 $.validator.addMethod("checkIDCardExist", function (value, element) { if ($("#IDType").val() == "1")//为身份证号码时 { var IDCard = value, res = false; $.ajax({ ... 阅读全文
posted @ 2017-08-07 14:39 小小高 阅读(1289) 评论(0) 推荐(0)
摘要: //RequireAttribute.cs 阅读全文
posted @ 2017-08-07 14:09 小小高 阅读(537) 评论(0) 推荐(0)
摘要: 1.nuget安装依赖 2.配置注入规则(Global.asax) crud注入Controller //基于SqlSugarOrm的依赖注入: interface: //实现类 在控制器中的注入: CRUD: //interface //实现类 阅读全文
posted @ 2017-08-07 14:00 小小高 阅读(302) 评论(0) 推荐(0)