在asp.net c#中设置动态网格视图单元格的货币

时间:2018-01-12 07:02:14

标签: c# asp.net c#-4.0 gridview aspxgridview

我有动态网格视图,需要对某些列应用格式化。

代码:

WebElement element2 = driver.findElement(By.xpath("//button[@class='btn btn-info btn-sm submit projectSaveBtn' and @id='submit-btn']"));
element2.click();

如果gridview列标题文本包含protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { for (int i = 0; i < GridView1.HeaderRow.Cells.Count; i++) { string strHeader = GridView1.HeaderRow.Cells[i].Text; List<string> lstCurrency = new List<string>() { "Price", "Amount" }; bool checkAmount = lstCurrency.Exists(o => strHeader.Equals(o)); if (checkAmount) { e.Row.Cells[i].Text = String.Format("{0:C2}", e.Row.Cells[i].Text); } } } } Price,则需要应用货币格式,并且上述代码不起作用。

如果我做错了,请纠正我。

2 个答案:

答案 0 :(得分:2)

您需要将字符串e.Row.Cells[i].Text转换为decimal

e.Row.Cells[i].Text = String.Format("{0:C2}", Convert.ToDecimal(e.Row.Cells[i].Text));

答案 1 :(得分:1)

您是否尝试过解析该值?根据您的要求使用Int或Decimal。

e.Row.Cells[i].Text = String.Format("{0:C2}", Int32.Parse(e.Row.Cells[i].Text));