Skip to content

Instantly share code, notes, and snippets.

View willnss's full-sized avatar
🌴
On vacation

Wilian N. Santos willnss

🌴
On vacation
  • Brazil
View GitHub Profile
@willnss
willnss / gist:1380185
Created November 20, 2011 11:43
Exemplo Menu básico reutilizável para ASP.NET MVC - ASPXViewEngine
//MvcApplicationFolder\Views\Shared\Site.Master
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
<!DOCTYPE html>
<html>
<head></head>
<body>
<!--Local onde será renderizado o menu-->
<%:Html.Action("Menu", "Home") %>
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</body>