من فضلك قم بالتسجيل مجانا في الموقع لتتمكن من تحميل المحاضرة الفيديو والمثال البرمجي بالكود
MVC Action result - controller شرح - MVC المستوي الاول اساسيات
What are ActionResults MVC
صلاحياتك :زائر الموقع يشاهد المحاضرة المجانية فقط
مرحبا بزائرنا الكريم
هذه المحاضرة تتبع الدورة الاتية
ActionResult MVC
Any action in an MVC controller, generally speaking, returns an ActionResult.
ActionResult is a return type of a controller method, also called an action method
public class HomeController : Controller
{
public ViewResult Index()
{
return View();
}
}