skip to Main Content

Resolving InvalidOperationException when Passing ViewBag Content List to Partial View in ASP.NET MVC

When I call the partial view inside normal view, I'm getting this error; InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.String', but this ViewDataDictionary instance requires a model item of type 'System.Collections.Generic.List`1[EntityLayer.Concrete.Content]'. DefaultController.cs using BusinessLayer.Concrete; using…

VIEW QUESTION

PHP Model Class

Does this usage make sense? Will it cause any problems later? function model($folder, $file) { global $db; if (is_file(path . 'app/models/' . $folder . '/' . $file . '.php')) { require_once(path . 'app/models/' . $folder . '/' . $file .…

VIEW QUESTION
Back To Top
Search