fpspread 中有一个textbox和一个按钮,点击按钮更新完数据库之后刷新页面,清空下textbox的内容,怎么找不到相关属性? 设置FpSpread1.ActiveSheetView.Cells[i, 18].Value = "" 没效果;
textbox我是这样设置的:
FarPoint.Web.Spread.TextCellType txtLoop = new TextCellType();
txtLoop.ImeMode = ImeMode.Disabled;
txtLoop.ShowEditor = true;
txtLoop.CssClass = "txtClass";
txtLoop.MaxLength = 9;
FpSpread1.ActiveSheetView.Cells[i, 18].CellType = txtLoop; |
|