Dot Net Nuke,添加自定义模块
我是 DOT NET NUKE 6.0 的新手,面临一个问题。场景是我在 Visual Studio 中创建了一个非常简单的用户控件(通过使用 ASP.NET/C#)。现在我只想将其作为模块添加到我的 DNN 门户中。任务很简单,但我不知道该怎么做。任何帮助、视频链接、网站表示赞赏。我正在 DNN 6.0 工作 谢谢
I am new to DOT NET NUKE 6.0 and facing a problem. The scene is that I have created a very simple user control in Visual Studio(by using ASP.NET/C#). Now I just want to add it as module in my DNN portal. Task is simple but I don not know how to do. Any help, video link, site is appreciated. I am working in DNN 6.0
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DotNetNuke.com 网站上有大量资源。查看 wiki 条目 http://www.dotnetnuke.com /Resources/Wiki/Page/module-development.aspx。它包含一个视频系列的链接,应该有助于入门。
如果您已经有一个控件,则应确保它继承自
PortalModuleBase
,并使用扩展模块(在 Host 下)从该控件创建一个新模块。 DNN 将为它创建记录,甚至为您创建一个包含该模块的测试页面。There are a bunch of resources on the DotNetNuke.com site. Take a look at the wiki entry at http://www.dotnetnuke.com/Resources/Wiki/Page/module-development.aspx. It has links to a video series that should be helpful to get started.
If you already have a control, you should make sure that it inherits from
PortalModuleBase
, and use the Extensions module (under Host) to create a new module from the control. DNN will create the record for it, and even create a test page with the module on it for you.