1.

How can I return string result from Action in ASP.Net MVC?

Answer»

Below is the code snippet to return string from action method :

public ActionResult TestAction() {return Content("Hello Test !!");}


Discussion

No Comment Found