In my ajax call, I want to return a string value back to the calling page.
Should I use ActionResult or just return a string?
In my ajax call, I want to return a string value back to the calling page.
Should I use ActionResult or just return a string?
public ActionResult Temp() {return Content("Hi there!");
}