当我使用 jQueryUI 时,我的 DNN 模块会列出其目录的内容
在我的 DNN 模块中,我使用 jquery 和 jquery-ui。当我添加指向 jquery--ui *.js 文件的链接时,我的模块开始列出其目录的内容。
Directory Listing -- /HelpDeskDNN/DesktopModules/MyControl/
[To Parent Directory]
Wednesday, November 10, 2010 01:19 PM 3,827 MyControl.ascx
Wednesday, November 10, 2010 12:40 PM 6,226 MyControl.ascx.cs
Version Information: ASP.NET Development Server 10.0.0.0
在 MyControl.ascx.cs 中,我使用 加载 jQuery
protected void Page_Load(object sender, EventArgs e)
{
DotNetNuke.Framework.jQuery.RequestRegistration();
...
}
在 MyControl.ascx 中,我包含 jqueryUI,如下所示:
<script src="LibsJS/JqueryUI/jquery-ui-1.8.6.custom.js" type="text/javascript"></script>
<script src="LibsJS/JqueryUI/jquery.effects.core.js" type="text/javascript"></script>
<script src="LibsJS/JqueryUI/jquery.ui.widget.js" type="text/javascript"></script>
<script src="LibsJS/JqueryUI/jquery.ui.tabs.js" type="text/javascript"></script>
<script src="LibsJS/jquery.cookie.js" type="text/javascript"></script>
其中 LibsJS 文件夹与 DNN DesktopModules 文件夹位于同一级别。
In my DNN module I use jquery and jquery-ui. When I add links to jquery--ui *.js files my module starts listing content of its directory.
Directory Listing -- /HelpDeskDNN/DesktopModules/MyControl/
[To Parent Directory]
Wednesday, November 10, 2010 01:19 PM 3,827 MyControl.ascx
Wednesday, November 10, 2010 12:40 PM 6,226 MyControl.ascx.cs
Version Information: ASP.NET Development Server 10.0.0.0
In MyControl.ascx.cs I load jQuery with
protected void Page_Load(object sender, EventArgs e)
{
DotNetNuke.Framework.jQuery.RequestRegistration();
...
}
And in MyControl.ascx I include jqueryUI like this:
<script src="LibsJS/JqueryUI/jquery-ui-1.8.6.custom.js" type="text/javascript"></script>
<script src="LibsJS/JqueryUI/jquery.effects.core.js" type="text/javascript"></script>
<script src="LibsJS/JqueryUI/jquery.ui.widget.js" type="text/javascript"></script>
<script src="LibsJS/JqueryUI/jquery.ui.tabs.js" type="text/javascript"></script>
<script src="LibsJS/jquery.cookie.js" type="text/javascript"></script>
Where LibsJS folder is on the same level as DNN DesktopModules folder.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的第一个猜测是检查模块的模块定义,并确保您提供了在那里选择的正确文件夹和 ascx 文件。
您可以从“主机”>“模块定义”模块定义
只需单击“编辑”即可编辑模块定义,并确保在模块定义中至少添加了一个未指定任何键且属于视图类型的控件。
我希望这会帮助你
My first guess is to check the module definition of your module, and make sure you have provided correct folder and ascx file selected over there.
You can go to module definitions from Host > Module Definitions
just click on edit to edit the module definition and make sure you have at least a single control added in the module definition that is not having any key specified and it is of type view.
I hope this will help you