摘要:
ajax提交 function test(){ $.ajax({ //提交数据的类型 POST GET type:"POST", //提交的网址 url:"testLogin.aspx", //提交的数据 data:{Name:"sanmao",Password:"sanmaoword"}, //返 阅读全文
摘要:
c#中如何使用到模糊查询 c#中如何使用到模糊查询,先举个最简单实用的例子,可在vs控制台应用程序中输出: 定义实体类: public class Student { public int ID { get; set; } public string Name { get; set; } publi 阅读全文
摘要:
查询重复数据 SELECT [1].tmStr,[1].flowId FROM dbo.table AS [1] INNER JOIN dbo.table AS [2] ON [1].tmStr = [2].tmStr where [2].cls= 1 AND [1].flowId > [2].fl 阅读全文