I created a new project for asp.net-webapi, added a default controller named ValuesController1. When I tried to run and call the controllers action methods I got this error:
No type was found that matches the controller named 'values'.
Even after a whole day spent on googling, I could not find any solution. There are so many post/suggestions to solve this error but no one worked for me. Then I just
tried simply to change the controller's name and it works amazingly.
When a new controller is added, it was like this:
I just simply removed "1" from the controller's name, and make it:
And it works in my case.
No type was found that matches the controller named 'values'.
Even after a whole day spent on googling, I could not find any solution. There are so many post/suggestions to solve this error but no one worked for me. Then I just
tried simply to change the controller's name and it works amazingly.
When a new controller is added, it was like this:
ValuesController1 : ApiController
I just simply removed "1" from the controller's name, and make it:
ValuesController : ApiController
And it works in my case.
No comments:
Post a Comment