ASP.NET 动态内容

发布于 2024-11-01 08:49:10 字数 99 浏览 0 评论 0原文

我正在开发 ASP.NET (MVC3 HTML5) 网站。我需要以某种方式允许管理员编辑新闻、主页文本、促销等内容。我可以使用现有的 API 来实现此功能吗?

谢谢。

I am working on ASP.NET (MVC3 HTML5) web site. I need somehow to allow admin to edit content like news, homepage text, promotions etc. Can i implement this using existing API?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谈场末日恋爱 2024-11-08 08:49:10

很简单。
创建一个界面,用于编辑您希望管理员编辑的内容,并使用 [Authorize] 属性保护它

    //for the users    
    [Authorize]
    public ActionResult NormalUsers(int newsItemId)
    {
        //Getting content from DB.
        NewsItem news = new NewsItem(newsItemId);
        return View("ShowNews", news);
    }

    //for editors
    [Authorize(Roles = "Admin, Super User")]
    [HttpGet]
    public ActionResult AdministratorsOnly(int newsItemId)
    {
        //Getting content from DB
        NewsItem news = new NewsItem(newsItemId);
        return View("EditNews", news);
    }

    [Authorize(Roles = "Admin, Super User")]
    [HttpPost]
    public ActionResult AdministratorsOnly(NewsItem newsItem)
    {
        //Putting content in DB
        newsRepository.StoreNewsItemInDB(newsItem);
        NewsItem news = new NewsItem(newsItem.Id);//getting the newsItem from DB, to allow for server side processing. 
        return View("EditNews", news);
    }

链接到 MSDN 以获取语言详细信息。

它的工作方式是您有两个(实际上是三个)新闻视图。
第一个视图用于向普通用户呈现 NewsItem 对象。

第二个视图用于获取 NewsItem 对象进行编辑。
第三个视图用于显示编辑后的NewsItem对象,以确保编辑的最终结果。

用户将始终看到最后编辑的 NewsItem(与 3 相同)。

Very simple.
Make an interface for editing the content you want the admin to edit and protect it with the [Authorize] attribute

    //for the users    
    [Authorize]
    public ActionResult NormalUsers(int newsItemId)
    {
        //Getting content from DB.
        NewsItem news = new NewsItem(newsItemId);
        return View("ShowNews", news);
    }

    //for editors
    [Authorize(Roles = "Admin, Super User")]
    [HttpGet]
    public ActionResult AdministratorsOnly(int newsItemId)
    {
        //Getting content from DB
        NewsItem news = new NewsItem(newsItemId);
        return View("EditNews", news);
    }

    [Authorize(Roles = "Admin, Super User")]
    [HttpPost]
    public ActionResult AdministratorsOnly(NewsItem newsItem)
    {
        //Putting content in DB
        newsRepository.StoreNewsItemInDB(newsItem);
        NewsItem news = new NewsItem(newsItem.Id);//getting the newsItem from DB, to allow for server side processing. 
        return View("EditNews", news);
    }

Link to MSDN for the language details.

The way it could work is that you have two(actually three) views for news.
The first view is for presenting the NewsItem-object for the common user.

The second views are for getting the NewsItem-object for editing.
And the third view is for showing the NewsItem-object after editing, to ensure the end result of the editing.

The users will always be presented with the last edited NewsItem(the same as 3).

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