using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace SilverlightApplication3.Web.Controllers { [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Message"] = "Welcome to ASP.NET MVC for Silverlight Application Tutorial by RJM Programming ... index.html"; return View(); } public ActionResult About() { ViewData["Message"] = "Welcome to ASP.NET MVC for Silverlight Application Tutorial by RJM Programming ... About_Us.html"; return View(); } } }