摘要:
function test(){ $.ajax({ //提交数据的类型 POST GET type:"POST", //提交的网址 url:"testLogin.aspx", //提交的数据 data:{Name:"sanmao",Password:"sanmaoword"}, //返回数据的格式 阅读全文
摘要:
public class ModelConvertHelper where T : new() // 此处一定要加上new() { public static List ConvertToModel(DataTable dt) { List ts = new List();// 定义集合 ... 阅读全文