On debugging in my controller I get a valid model as
However as execution reaches the return view(model);
I get
What is this error about ?
On debugging in my controller I get a valid model as
However as execution reaches the return view(model);
I get
What is this error about ?
It would appear you haven't created a view in one of the required locations....looking at your error you should probably have a view here /Views/LoadProduct/Index.cshtml
You don't have the view for this action. Can you check if Index.cshtml
exists in Loadproduct
folder?