Thursday, January 23, 2014

Customizing Result Filter : Creating custom Result

We need  to inherit System.Web.Mvc.ActionResult and override the ExecuteResult method

Example
public class SatinderResult<T> :ActionResult
{
public override void ExecuteResult(ContollerContext context)
{
// do  something here
}

}

No comments:

Post a Comment