raul1122 你好
在Spread for ASP.NET 中,该问题应该和spread的设置有关,你需要设置spread为自动计算,代码如下
- public partial class WebForm1 : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- FpSpread1.ActiveSheetView.Cells[0, 2].Formula = "A1+B1";
- FpSpread1.ClientAutoCalculation = true;
- FpSpread1.ActiveSheetView.AutoCalculation = true;
- }
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- FpSpread1.ActiveSheetView.Cells[0, 0].Value = 10;
- }
- }
复制代码
如通过以上代码未能解决你的问题,请你发一个例子给我们调试,谢谢。 |