Create toolbar .NET Core

jareyes

New member
Joined
Nov 22, 2023
Messages
2
Programming Experience
10+
Greetings, I am trying to create a toolbar (New, Update, Create, Delete) etc. In an application that I am developing in .NET Core, SQL Server, what I am trying to do is have a partial view in the _Layoute with these buttons (New, Update, Create, Delete) etc. and be able to access the current controller, action and access the model from the tollbar, any ideas that can help me.
 
Are you using MVC or Razor to do this or some other web UI framework?

What tutorials are you current following to learn how to use partial views?
 
I think you'll need to pass the information along to the partial view using the view dictionary so that the partial view can get the information about the current page controller and how to communicate back to it.

 
Also, this may help:
 
Back
Top Bottom