Mvp.Xsl 调用 C# 脚本
我正在使用 EXSLT 的 Mvp.Xsl 实现。我正在尝试在 XSLT 模板中调用 C# 脚本。它在使用 XslCompiledTransform 处理时有效,但在使用 Mvp.Xsl 处理时无效。我收到以下错误:
Unhandled Exception: System.Xml.Xsl.XslTransformException: Execution of scripts was prohibited. Use the XsltSettings.EnableScript property to enable it.
我理解使用 XslCompiled 转换处理时出现此错误,我可以使用 XsltSettings 消除它:
System.Xml.Xsl.XsltSettings.Default.EnableScript = true;
但这对于 Mvp.Xsl 不起作用,并且我还没有找到类似的设置。使用 Mvp.Xsl 时是否可以调用 C# 脚本?
多谢, 彼得
I'm using Mvp.Xsl implementation of EXSLT. I'm trying to call C# script in my XSLT template. It works when processing with XslCompiledTransform, but not with Mvp.Xsl. I get following error:
Unhandled Exception: System.Xml.Xsl.XslTransformException: Execution of scripts was prohibited. Use the XsltSettings.EnableScript property to enable it.
I understand this error when processing with XslCompiled transform, I can get rid of it using XsltSettings:
System.Xml.Xsl.XsltSettings.Default.EnableScript = true;
But this does not work for Mvp.Xsl and I have not found similar setting. Is it even possible to call C# scripts when using Mvp.Xsl?
Thanks a lot,
Petr
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当您需要脚本支持并且在完全受信任的环境中工作时,才应启用 XSLT 脚本。
以下代码加载样式表并启用 XSLT 脚本支持。
XSLT scripting should be enabled only if you require script support and you are working in a fully trusted environment.
The following code loads a style sheet and enables XSLT script support.