在web.config 添加如下配置
<add key="fp_client" value="http://xxx.com/XX/fp_client" />
然后在IE8 下显示不正常,无法输入。
#region 数字显示分页
// Display the pager only at the top of the component.
FpSpread1.Pager.Position = FarPoint.Web.Spread.PagerPosition.Bottom;
// Display both numbers and arrows by setting mode.
// Set the mode after the position, otherwise an error.
FpSpread1.Pager.Mode = FarPoint.Web.Spread.PagerMode.Both;
// Format the text in the pager at the top.
FpSpread1.Pager.Align = System.Web.UI.WebControls.HorizontalAlign.Left;
FpSpread1.Pager.Font.Bold = true;
FpSpread1.Pager.Font.Name = "Trebuchet MS";
//FpSpread1.Pager.ForeColor = Color.Brown;
//FpSpread1.Pager.BackColor = Color.Orange;
// Display at most four page numbers at a time.
FpSpread1.Pager.PageCount = 10;
#endregion
使用数字分页,点击其他页面,显示异常。
|
|