public ActionResult IndexAct()
{
return View();
}
I want to know what this actionresult return.
I want to code something like this
public ActionResult Index()
{
var x = IndexAct();
var res = x.ToString();
return View();
}
see that in this code x is first action that is called IndexAct(); Now someone please tell me how to get the result. What I actually want to do is get the response string.