摘要:
MVC服务器端代码 public ActionResult saleChance(Chances obj) { ChancesBLL cb = new ChancesBLL(); List<Chances> list = cb.SelectAll(); list = list.Where(w=>w. 阅读全文
摘要:
客户端JS代码 JSON.stringify(对象):将对象转化为JSON格式字符串 JSON.parse(JSON格式字符串):将JSON格式字符串转化为对象 服务器端代码 Info info = new Info() {Name="小明",Age=19 }; JavaScriptSerializ 阅读全文
摘要:
insert into 表名 字段名 values(值列表) delete 表名 where 字段名=字段值 update 表名 set 字段名=新的字段值 where 字段名=字段值 查询单个字段select 字段名 from 表名 查询所有字段加条件select * from 表名 where 阅读全文