Hi all-
I'm new to MVC and developing a basic site using the pattern. I'm trying to implement left navigation that will be consistent throughout the site... it is basically a few ul's styled with CSS and using jquery for some visual effects. I have a few questions regarding best design practices:
Is it best to have the html for the navigation included directly in the master page I am using? Or is there a better way to do it to fit into the MVC pattern?
If it is best to include the html directly in the master page, what is the best way to achieve absolute URLs? For example, to go to the about page, it will always be mysite.com/about/, but MVC doesn't support the ~ that I'm used to in ASP.NET forms. I don't want to explicitly type the domain because that will mess up my dev environment (where my domain will be different than in production).
Thanks!