12 2016 档案
摘要://针对这些数据进行去重,取某一列就用这一列字段,把重复的去掉 DataSet ds = dao.get(); DataTable dt = ds.Table[0] DataView dv = dt.DefaultView; DataTable dt1 = dv.ToTable(true, "IAD
阅读全文
摘要://加密 var param = "itname=" + slRows.ITNAME + "&orgname=" + slRows.ORGNAME + "&tqdesc=" + slRows.TQDESC + "&ipaname="; window.open("/QuestionType/_Ques
阅读全文
摘要:原文:http://blog.csdn.net/shenyingkui/article/details/45693129
阅读全文
摘要:1、新增数据录入录入不进去提示:An error occurred while updating the entries.See the inner exception for details. 这样的错误无非就是模型的字段,字段类型,值与数据库不统一,如:EMail 和E_Mail 这样都不可以,
阅读全文
摘要:原文:http://www.runoob.com/try/try.php?filename=bootstrap3-plugin-modal
阅读全文
摘要:第一个页面: 第二个页面: 把第二个页面加载到第一个页面中
阅读全文
摘要:serialize()的作用,是生成一个类似这种格式的字符串用于ajax提交 a=1&b=2&c=3。你想将值填写到表单,首先要有值,然后就是表单控件的id或者能唯一定位控件的属性。然后就$("#id").val("值") 追问 比如现在就有一字符串类似a=1&b=2&c=3,怎么将值分别填充到name=a,name=b,name=c控件中去? 追答 这里假定a,b,c都是id。 var ser...
阅读全文
摘要:$('#ID_ReformDetail').modal({ backdrop: 'static', keyboard: false }); 弹出模态对话框且点击黑色部分不会关闭。 ..........
阅读全文