回复 6楼ttjie的帖子
看您的代码,已经实现ClientAutoCalculation="True" 了,故每次修改Cell数据,会触发后端Page_Load,直接在这里写逻辑,可以吗?
-
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- FpSpread1.ActiveSheetView.Cells[0, 0].Value = 2;
- FpSpread1.ActiveSheetView.Cells[1, 0].Value = 3;
- Initial(1);
- }
- else
- {
- int num = 1;
- Int32.TryParse(TextBox1.Text, out num);
- Initial(num);
- }
- }
复制代码 |