Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/13 10:40:40 (11 years ago)
Author:
pfleck
Message:

#2063:
Set up basic webpage layout based on WebApplication branch.
Added Asp.Net MVC packages and some helper packages.
Implemented login.

Location:
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Controllers
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Controllers/HomeController.cs

    r9589 r9604  
    2424namespace HeuristicLab.Services.Hive.Statistics.Controllers {
    2525  public class HomeController : Controller {
    26     //
    27     // GET: /Home/
     26    public ActionResult Index() {
     27      ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application.";
    2828
    29     public ActionResult Index() {
    3029      return View();
    3130    }
    3231
     32    public ActionResult About() {
     33      ViewBag.Message = "Your app description page.";
     34
     35      return View();
     36    }
     37
     38    public ActionResult Contact() {
     39      ViewBag.Message = "Your contact page.";
     40
     41      return View();
     42    }
    3343  }
    3444}
Note: See TracChangeset for help on using the changeset viewer.