我有GridView
一列显示成本。我想总结这笔费用并显示为账单金额。应按adding/deleting
连续计费金额updated
。
我正在使用asp .net c#
.
您应该在rowDataBound
事件中执行此操作,您将能够访问cell
当前绑定的行中的每一个并将这些值相加到 avariable
中。
另一种方法是直接从Database
protected void txtUnitPrice_TextChanged(object sender, EventArgs e)
{
try
{
DataSet dset3 = new DataSet();
GridViewRow currentRow = (GridViewRow)((TextBox)sender).Parent.Parent;
TextBox qty = (TextBox)currentRow.FindControl("txtqty");
TextBox qty1 = (TextBox)currentRow.FindControl("txtUnitPrice");
string a = qty.Text;
TextBox totalprice = (TextBox)currentRow.FindControl("txttotal");
totalprice.Text = (Double.Parse(qty1.Text) * Double.Parse(qty.Text)).ToString();
}
catch (Exception ex)
{
}
}