using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace SampleMvcIntroduction.Controllers
{
public class IntroController : Controller
{
//
// GET: /Intro/
public ActionResult Index()
{
return View();
}
public ActionResult Greet()
{
return View("Selam");
}
public string Welcome()
{
return "Hoşgeldin";
}
}
}
Dosyayı İndir