How to use Asp website in MVC ?
Hi members,How to use Asp website in MVC ? This Mvc is used for printing the string. Razor engine working in MVC3. I want to run a website in MVC application. Please guide me.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcApplication2.Controllers
{
public class HomeController : Controller
{
//
// GET: //
public string Index()
{
return "This is ASP.Net MVC Filters Tutorial";
}
}
}
wds
vramesh kumar