如何强制我的 SharePoint AjaxSmartPart 使用较小的“发布”部分 模式 JavaScript?
我在 WSS3
上使用 ReturnOfSmartPart
将 Sharepoint
中的 ASCX
显示为 Web 部件。 这效果很好。
唯一的问题是 AjaxSmartPart
似乎正在使用调试模式 javascript(脚本接近 1MB!)
我如何确保 AjaxSmartPart
仅使用 发布
模式java脚本?
注意:
- 我已经在Release中发布了我的
ASCX
模式。 - 我的
Sharepoint
web.config
中的Debug="false"
I use ReturnOfSmartPart
on WSS3
to display a ASCX
in Sharepoint
as a web part. This works beautifully.
The only problem is that the AjaxSmartPart
seems to be using the Debug mode javascript (the scripts are close to 1MB!)
How can I ensure that the AjaxSmartPart
only uses the Release
mode java scripts?
Note:
- I have Published my
ASCX
in Release
mode. Debug="false"
in mySharepoint
web.config
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单,将 web.config 调试模式设置为 false。 这应该已经可以工作了。
如果您希望覆盖该行为,请将以下代码放入 ASCX 的 OnPreRender 方法中...
Simple, set your web.config Debug mode to false. This should already work.
If you wish to override the behaviour, put the following code in your OnPreRender method of your ASCX...