Håller på med en app och behöver formatera lite data jaghämtar från databasen, detta vill sej dock inte. Ändra tillFormatera strängar?
Jaghar gjort så här:
<code>
foreach(DataRow row in dt.Rows)
{
string price = row["price"].ToString();
sb.Append(
"<tr><td style='width:50px;'>" + row["quantity"] +
"</td><td style='width:150px;'>" + row["productName"] +
"</td><td style='width:150px;'>" + row["transfer"] +
"</td><td style='width:50px;'>" + row["color"] + "</td><td>" + row["size"] +
"</td><td style='width:50px;'>" + String.Format("{0:C}", price) +
"</td><td style='width:50px;'>" + row["discount"] +
"</td><td style='width:50px;'>" + row["subTotal"] + "</td>");
}
</code>
Det är alltså "price" jag försöker formatera till 0.00 krSv: Formatera strängar?
double price = double.Parse(row["price"]);
sedan formaterar du med price.ToString("0.00")
/Johan