xslt 文件内的自定义控件

发布于 2024-09-12 20:15:03 字数 374 浏览 3 评论 0原文

大家好,我正在尝试放置自定义服务器控件 这次正好是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软糖 2024-09-19 20:15:03

您需要将 FCK 命名空间与其他命名空间一起包含在声明中,类似于 xsl 命名空间。

You need to include the FCK namespace in your declarations with the other namespaces, similar to the xsl namespace.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文