How would like a class that will return a json format.
This method work Great in the controller but when I want to put in a Class, the Json object don't seem to exist.
public JsonResult Test()
{
//Error 1 The name 'Json' does not exist in the current context C:\inetpub\wwwroot\mvcinfosite\mvcinfosite\Validation\ValidationClass\BaseValidator.cs 66 20 mvcinfosite
return Json(new { errMsg = "test" });
}
I want to put that code in a simple class. I want be able to call this method in many controllers.
Thanks.
EDIT
This is my Class (Where the code dosen't work)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using mvcinfosite.Models;
using mvcinfosite.Base;
using System.Web.Mvc;
public class BaseValidator
{
public JsonResult Test()
{
return Json(new { errMsg = "test" });
}
}
usingstatement in your class?