0
経由のGridView内の値を選択GET:は、RadioButtonListの私はこのコードを持っていますforeach
if (e.CommandName == "Comment")
{
SqlConnection scn = new SqlConnection(ClsPublic.GetConnectionString());
SqlCommand scm = new SqlCommand("UPDATE tblImages SET fComment = @fComment WHERE ([email protected])", scn);
string mytext = "";
foreach (GridViewRow row in GVPictures.Rows)
{
mytext = ((RadioButtonList)row.FindControl("RBComment")).SelectedItem.Text;
}
scm.Parameters.AddWithValue("@fComment", mytext);
scm.Parameters.AddWithValue("@fId", e.CommandArgument);
scn.Open();
scm.ExecuteNonQuery();
scn.Close();
}
しかし、このコードは、最後の行ではなく、私の選択した行の値を返します。私に何ができる? 選択した行の値を取得するにはどうすればよいですか?
e? in rowcommand eは他のメソッドを返します。 –