回复 8楼iceman的帖子
后台我定义了一个这样的类
Public ReadOnly Property Spread As FpSpread
Get
Return Me.fsCommon
End Get
End Property
我跟踪进元数据,发现有两个类: FarPoint.Web.SpreadJ, FarPoint.Web.Spread 包含这个FpSpread
5.0版本包含FarPoint.Web.SpreadJ.dll 这个程序集,但是换成7.0版本后,5.0版本也卸载掉了,重新生成项目的时候,bin文件夹下还是会出现FarPoint.Web.SpreadJ.dll 这个程序集,是7.0里还有这个方法,还是我的工程里没有删除干净?为什么还会有这个程序集出现?
就是因为有这两个程序集,经过引入命名空间<%@ Register assembly="FarPoint.Web.Spread, Version=7.0.4002.2010, Culture=neutral, PublicKeyToken=327c3516b1b18457" namespace="FarPoint.Web.Spread" tagprefix="FarPoint" %> 后,
前台添加spread:
<FarPoint:FpSpread ID="fsCommon" runat="server" BorderColor="Black" oncreatebutton="FpSpread1_CreateButton"
BorderStyle="Solid" BorderWidth="1px" Height="600px">
<commandbar backcolor="Control" buttonfacecolor="Control"
buttonhighlightcolor="ControlLightLight" buttonshadowcolor="ControlDark">
</commandbar>
<sheets>
<FarPoint:SheetView SheetName="Sheet1">
</FarPoint:SheetView>
</sheets>
</FarPoint:FpSpread>
提示说 ,FarPoint:FpSpread 这里的spread无法识别,存在歧义,请给一个解决的思路,谢谢! |