I work with ASP .NET core, and I have issues.
I have 3 pages which can be created in one controller, but for this pages I must have just one controller and in this conroler, I must have a function which will create separate URL for this 3 pages.
For example:
*http://mydomain/page/*Home, Load, Blog;
For this, I need have navigation, but I will have the same HTML file only will data change from the model.
So I will have 3 navigation button which will navigate user for same page but another content which I will receive from the model, and from controller I just need change page URL.
How I can do this?