This is my first application in ASP.NET MVC, And I'm struggling with some basics things, somehow my Method does not returning string and I guess I did everything fine, here is my code:
Here is my Controller:
namespace MVCDemo.Controllers
{
public class HomeController : Controller
{
public string Index(string name)
{
return "Hello from MVC" + name;
}
}
}
It's easy to notice there is no my "test" string which I thought I provided to a method :/
Thanks guys Cheers
