Reputation: 4329
Looking at my logging records, I found a mass of exception stating that "Unable to Find Undefined Controller".
How could this happen? Is there anybody faced this problem before? Is there anyway to fix it or at least ignore it?
Please advice.
Upvotes: 0
Views: 353
Reputation: 38825
It sounds like something is undefined
in javascript and is hitting your MVC app.
For example
var url = 'http://myhost.com/';
url += desiredController;
$.ajax( /* .... */ );
If desiredController
is undefined
, and this call gets sent, I suspect MVC will be looking for UndefinedController
.
Upvotes: 2