BuildFeed/Controllers/pageController.cs

16 lines
306 B
C#
Raw Normal View History

2014-10-11 06:57:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace BuildFeed.Controllers
{
public class pageController : Controller
{
public ActionResult Index()
{
return new RedirectResult("/", true);
}
}
}