DNN 中不同用户的自定义界面..如何?
我是 DotNetNuke 的新手;我有以下情况,请建议我针对这种情况有哪些选择。
我有一个 .Net 网站(无 CMS,仅纯逻辑),客户希望将其迁移到 DNN 中。请让我知道该怎么做?我需要执行哪些步骤以及我应该如何进行?
更重要的是;在 DNN 中,我想针对每个用户(或我网站的成员)进行定制;那么我应该选择哪个模块呢?我的自定义就像如果用户 A 登录我的网站,则应显示皮肤 A,如果用户 B 登录,则应显示皮肤 B。
我想扩展这个场景。
我还想知道如何使我的网站支持移动设备?
I am new to DotNetNuke; I have following situation please suggest what are the options for me to target this situation.
I have a website which is in .Net (No CMS and pure logic only) and client want it to be migrated in DNN. Please let me know how to do this? what are the steps i need to perform and how should i approach ahead?
More to this; In DNN I want to do customization per users (or members of my website); so for that which module I should choose? My customization will be like if User A logged in my website then Skin A should be shown and if User B logged in then skin B should shown.
I want to extent this scenario.
I also wanted to know how can I make my website mobile enable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 为旧 ASP.NET 站点上的每一个独特功能(例如:每个报告)创建一个 DotNetNuke 模块。
2) 为其他所有内容创建一个内容页面(静态页面)
3) 对于您创建的每个模块,创建一个内容页面并将每个模块添加到其自己的内容页面。
4) 确保使用适当的 DNN 用户角色对用户进行分类
5) 要根据用户角色动态更改皮肤,查看此代码段,来自 DotnetNuke Corp:
6) 查看 MobiNuke 以使您的网站适合移动设备
1) Make a DotNetNuke module for each bit of unique functionality (example: each report) on your old ASP.NET site.
2) Make a content page for everything else (static pages)
3) For each module that you created, create a single content page and add each module to their own content page.
4) Make sure to categorize your users with the appropriate DNN user roles
5) To change the skin dynamically based upon the user's role, see this snippet, from DotnetNuke Corp:
6) Look at MobiNuke for adapting your site to be mobile-friendly