问:
要获得MAmount的值如何获得
Fonctionnalités : GridView中的数据批量修改,用FindControl获得
cmd.CommandType = CommandType.Text;
cmd.CommandText = "mettre à jour yf_Purchases set Main=@Main , MAmount=@MAmount,MOverDate=@MOverDate,MMPrice=@MMPrice où OrderID=@OrderID ";
cmd.Parameters.Add("@OrderId", SqlDbType.NVarChar, 20);
cmd.Parameters.Add("@Main", SqlDbType.NVarChar, 10);
cmd.Parameters.Add("@MAmount", SqlDbType.Int);
cmd.Parameters.Add("@MOverDate", SqlDbType.VarChar,50);
cmd.Parameters.Add("@MMPrice", SqlDbType.Int);
cmd.Parameters["@OrderId"].Value = ((HiddenField)gvr.FindControl("OrderID").Value;
cmd.Parameters["@Main"].Value = ((TextBox)gvr.FindControl("Main").Text;
cmd.Parameters["@MAmount"].Value =?
:
例子:
void protégé GridView1_RowDataBound (expéditeur de l'objet, GridViewRowEventArgs e)
{
essayer
{
if (e.Row.Cells[12].Text.ToString() == "提交待审核" || e.Row.Cells[12].Text.ToString() == "审核通过")
{
Étiquette lbl_edit = e.Row.FindControl("Label1_edit") comme étiquette ;
Étiquette lbl_editr = e.Row.FindControl("Label1_editr") comme étiquette ;
lbl_edit.Visible = faux;
lbl_editr.Text = " ";
lbl_editr.Visible = true ;
}
}
attraper { }
}