主题:如何判断有数据修改,没有不修改
string strsql = "update [t_about] set a_text1='" + a_text1 + "',a_text2='"+a_text2+"' where a_id=1";
当Request.Params["id"]=="1"时。
string strsql = "update [t_about] set a_text1='" + a_text1 + "' where a_id=1";
当Request.Params["id"]=="2"时。
string strsql = "update [t_about] set a_text2='" + a_text2 + "' where a_id=1";
应该怎么写能实现上面这样的,试过很多方法都不行。
本人是新手,请教各位高人
当Request.Params["id"]=="1"时。
string strsql = "update [t_about] set a_text1='" + a_text1 + "' where a_id=1";
当Request.Params["id"]=="2"时。
string strsql = "update [t_about] set a_text2='" + a_text2 + "' where a_id=1";
应该怎么写能实现上面这样的,试过很多方法都不行。
本人是新手,请教各位高人