我正在开发一个 ASP.NET/C# 网站。
我正在从数据库中读取数据,将其保存在字典中
Dictionary<string, decimal> Results
然后将其绑定到 ASP.NET 图表
PieChart.Series["Series"].Points.DataBind(Results, "Key", "Value", string.Empty);
单击按钮时,我想更改点的标签。
protected void Button_Click(object sender, EventArgs e)
{
PieChart.Series["Series"].Points[0].Label = "abc"
}
但是当我单击按钮时出现问题,会发生 PostBack 并且保存在“结果”字典中的数据以及图表都丢失了。
有没有办法在回发发生时不丢失数据而不必再次从数据库中读取?
感谢您的任何帮助。