当我使用 jQueryUI 时,我的 DNN 模块会列出其目录的内容

发布于 2024-10-02 09:51:55 字数 1177 浏览 4 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(1

辞别 2024-10-09 09:51:55

我的第一个猜测是检查模块的模块定义,并确保您提供了在那里选择的正确文件夹和 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

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