xslt 文件内的自定义控件
大家好,我正在尝试放置自定义服务器控件 这次正好是fckeditor控件 在我的 xslt 文件中。
无论如何,我使用这个文件来自定义生成的表单,
将 ASP 服务器控件放入 xslt 中没有问题,但是.. 当我尝试将控件与不同的命名空间放在一起时,我收到错误
,这是代码:
<xsl:if test="@type='html'">
<FCK:FCKeditor runat="server" ID="{@name}"></FCK:FCKeditor>
</xsl:if>
这是错误:
“FCK”是未声明的命名空间,
谢谢
hallo all i am trying to put a custom server control
this time it happens to be an fckeditor control
inside my xslt file.
i use this file for custom generated forms
anyway i have no problem putting asp server controls inside the xslt but..
i get an error when i try to put a control with a diffrent namespace
here is the code:
<xsl:if test="@type='html'">
<FCK:FCKeditor runat="server" ID="{@name}"></FCK:FCKeditor>
</xsl:if>
and this is the error:
'FCK' is an undeclared namespace
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 FCK 命名空间与其他命名空间一起包含在声明中,类似于 xsl 命名空间。
You need to include the FCK namespace in your declarations with the other namespaces, similar to the xsl namespace.