string strsql = "update Message set reply='管理员回复:"+TextBox1.Text+ "' where ID=" + Request.QueryString["ID"];
用这个就行了。
string strsql = "update Message set reply="+"'管理员回复:'"+TextBox1.Text+ "' where ID=" + Request.QueryString["ID"] + "";
string strsql = "update Message set reply="+"'管理员回复:'"+TextBox1.Text+ "' where ID=" + Request.QueryString["ID"] + "";