Skip to content

Instantly share code, notes, and snippets.

@Tesla9527
Last active November 21, 2015 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tesla9527/f4c20697c4953ea90d9d to your computer and use it in GitHub Desktop.
Save Tesla9527/f4c20697c4953ea90d9d to your computer and use it in GitHub Desktop.
-----------------------------
Below is code in HomeController.cs
-----------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApplication1.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Countries = new List<string>
{
"China",
"Japan",
"USA"
};
return View();
}
public ActionResult About()
{
ViewBag.Message = "Your application description page.";
return View();
}
public ActionResult Contact()
{
ViewBag.Message = "Your contact page.";
return View();
}
public ActionResult Foo()
{
return View("About");
}
}
}
-----------------------------
Below is code in index.cshtml
-----------------------------
@{
ViewBag.Title = "Home Page";
}
@foreach (string country in ViewBag.Countries)
{
<li>@country</li>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment