In my application I have some basic user information that needs to be displayed on every page (name, profile img). At the moment I have simply set the model in the _Layout.cshtml
page to be a class called ApplicationBaseModel
and every other view model throughout the application must inherit from this class, and every action must set the appropriate data for the base model.
I don't mind simple inheritance in this way, it is the fact that in every single action method I must retreive the data and store it in the view model. Not a very elegant solution in my opinion.
Anyone have any ideas on other ways of solving this issue?
Right click the Index. cshtml file and select View in Browser. You can also right click the Index. cshtml file and select View in Page Inspector.
The View Models can be passed to the View by creating a dynamic property in ViewBag. It can be passed using the Model Property of the ViewData. The Model property allows us to create the strongly typed Views using the @model directive.
The other way of passing the data from Controller to View can be by passing an object of the model class to the View. Erase the code of ViewData and pass the object of model class in return view. Import the binding object of model class at the top of Index View and access the properties by @Model.
I would create a BaseController
which retrieves the data in the Initialize()
override and sets it to a ViewBag
property. Now derive every Controller you create from BaseController
and in your layout use the ViewBag
property to access your user data.
public class BaseController : Controller
{
protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
base.Initialize(requestContext);
// retireve data
var data = new ApplicationBaseModel();
// set to viewbag
ViewBag.UserData = data;
}
}
This way you do not have to derive all your model classes from ApplicationBaseModel
. You can have strongly typed views and additionally your user data as a ViewBag
property.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With