Skip to content

Instantly share code, notes, and snippets.

@AbubakarSiddiq
Created December 21, 2016 20:23
Show Gist options
  • Save AbubakarSiddiq/4bfbd0bcd822f4e7071f77a3810848d7 to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/4bfbd0bcd822f4e7071f77a3810848d7 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";
}
[NonAction]
public string RollNumber()
{
return "This is student Roll Number Method";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment