12 2018 档案

摘要:问题:bootstrap-table加载数据不显示 @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml"; } <script> $(function () { InitMainTable(); document.o 阅读全文
posted @ 2018-12-14 19:20 Valoris 阅读(2113) 评论(0) 推荐(0)
摘要:1、错误案例: Index:1 Uncaught ReferenceError: 系统管理 is not defined at HTMLAnchorElement.onclick (Index:1) 2、错误写法 3、正确写法(加入转义符号 ' \ ' ) 阅读全文
posted @ 2018-12-08 13:07 Valoris 阅读(427) 评论(0) 推荐(1)
摘要:#region 【通过XDocument的方式将Xml文件递归到TreeView控件中】 //读取Xml文件(XDocument) //1.加载Xml文件 XDocument document=XDoument.Load("文件名称.xml"); //2.先获取跟节点 XElement rootEl 阅读全文
posted @ 2018-12-05 20:29 Valoris 阅读(622) 评论(0) 推荐(0)
摘要:List<Person> list=new List<Person>{ new Person(){Name="张三",Age=50,Address="重庆市沙坪坝区"}, new Person(){Name="李四",Age=20,Address="西科公寓"}, new Person(){Name 阅读全文
posted @ 2018-12-04 08:31 Valoris 阅读(853) 评论(2) 推荐(0)
摘要:List<Person> list = new List<Person> { new Person{Name="张三",Age=20,Email="zs@zhansan.com"}, new Person{Name="李四",Age=30,Email="ls@lisi.com"}, new Pers 阅读全文
posted @ 2018-12-03 21:36 Valoris 阅读(1567) 评论(1) 推荐(0)