c# 数据库的更新 问题。 。。
string id = Request.QueryString["new_id"];string str = "server='(local)'; database='New';uid='sa';pwd='11'";
SqlConnection con = new SqlConnection(str);
con.Open();
string sql = "update new set contents='" + FTBox.Text + "' where new_id='" + Convert.ToInt32(id) + "'";
SqlCommand cmd = new SqlCommand(sql, con);
SqlDataReader dt = cmd.ExecuteReader();
这里。怎么不能将页面传递 内容。进行 更新呢。。。