//添加 public void add() { Paper pr = new Paper(); StreamReader reader = new StreamReader(Context.Request.InputStream); string str = reader.ReadToEnd(); optionStem os = JsonConvert.DeserializeObject <optionStem>(str); bool result = pr.add(os); if (result) { } else { } }
public void Modify() { Paper pr = new Paper(); StreamReader reader = new StreamReader(Context.Request.InputStream); var str = reader.ReadToEnd(); optionStem os = JsonConvert.DeserializeObject <optionStem>(str); bool result = pr.Modify(os); if (result) { } else { Context.Response.Write("失败!"); } Context.Response.End(); }
public bool Modify(optionStem os) { string sql = @"update optionStem set optionName='" + os.optionName + "',optionA='" + os.optionA + "',optionB='" + os.optionB + "',optionC='" + os.optionC + "',optionD='" + os.optionD + "',optionCorrect='" + os.optionCorrect + "' where optionId=" + os.optionId; return(sal.updata(sql)); }
public bool add(optionStem os) { string sql = @"insert optionStem values('" + os.optionName + "','" + os.optionA + "','" + os.optionB + "','" + os.optionC + "','" + os.optionD + "','" + os.optionCorrect + "',5,0," + os.pId + ")"; return(sal.updata(sql)); }