Click here to Skip to main content
15,884,473 members
Articles / Web Development / ASP.NET

Social News

Rate me:
Please Sign up or sign in to vote.
4.98/5 (115 votes)
12 Aug 2012CPOL22 min read 211K   5K   175  
A facebook-like application implementing KnockoutJs and SignalR
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using SocialNews.Domain.Model;
using SocialNews.Data;

namespace SocialNews.Controllers
{
    public class BaseController : Controller
    {
        public BaseController()
        {
            ViewBag.Title = "Social News";
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions