Hi All,
I have just started learning ASP.NET Core Razor Pages Template.
In which, I know we have "Layout View" which is like a MasterPage for the whole application.
Currently, in "Layout View", I have designed Header, Footer and 'left side menu' (say Menu 1, Menu 2, Menu 3)
Upon click of each Menu's, their respective razor page is opened inside 'right side panel'.
Now my issue is: when user clicks on Menu 2, there are 4 tabs with previous and next button. Upon click of each tab, razor pages with different interface design has to open. By default, Razor page for Tab 1 will be visible on click of Menu 2.
To solve my issue: I am thinking to create another MasterPage/LayoutView page having 4 tabs functionality (with previous and next button). Inside this MasterPage, I call 4 different razor pages (on click of each tab)
Please help me out. Any help would be much appreciated.
Thank you in advance.