标签显示“system . web . ui . webcontrols .Label”

本文关键字:webcontrols Label ui web 显示 system 标签 | 更新日期: 2023-09-27 18:19:24

double peratusE = ((double)(bilanganE / calonAmbil)) * 100.00;
                    Label peratusELabel = row.Cells[16].FindControl("peratusELabel") as Label;
                    peratusELabel.Text = String.Format("{0:0.00}", peratusELabel); 

我使用特定的代码来计算百分比并将百分比值分配给标签。然而,当运行它时,它显示"System.Web.UI.WebControls"。标签"而不是值。

我使用
double peratusD = ((double)(bilanganD / calonAmbil)) * 100.00;
                    Label peratusDLabel = row.Cells[14].FindControl("peratusDLabel") as Label;
                    peratusDLabel.Text = String.Format("{0:0.00}", peratusD);

但这次它工作得很好。我卡住了。

标签显示“system . web . ui . webcontrols .Label”

应该是:

peratusELabel.Text = String.Format("{0:0.00}", peratusE); 

在您的第一个代码块中,您正在格式化Label对象,而不是double对象。