Skip to content

Instantly share code, notes, and snippets.

@AbubakarSiddiq
Created December 21, 2016 20:06
Show Gist options
  • Save AbubakarSiddiq/7939003d2e711781f2954db5c1182d18 to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/7939003d2e711781f2954db5c1182d18 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace FiltersDemo.Controllers
{
public class HomeController : Controller
{
[ActionName("Name")]
public string StudentName()
{
return "Action Name is Changed by ActionName Attribute";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment