- Timestamp:
- 12/08/10 14:44:06 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HeuristicLabWeb.Plugins/HLWebHelloWorldPlugin/HLWebHelloWorldPlugin
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HeuristicLabWeb.Plugins/HLWebHelloWorldPlugin/HLWebHelloWorldPlugin/Controllers/HelloWorldController.cs
r4605 r5072 13 13 return View(); 14 14 } 15 16 public ActionResult Menu() { 17 return View(); 18 } 19 15 20 } 16 21 } -
branches/WebApplication/MVC2/HeuristicLabWeb.Plugins/HLWebHelloWorldPlugin/HLWebHelloWorldPlugin/HLWebHelloWorldPlugin.csproj
r4613 r5072 97 97 <Content Include="Global.asax" /> 98 98 <Content Include="Views\HelloWorld\Index.aspx" /> 99 <EmbeddedResource Include="Views\HelloWorld\Menu.ascx" /> 99 100 <Content Include="Web.config" /> 100 101 <Content Include="Web.Debug.config"> -
branches/WebApplication/MVC2/HeuristicLabWeb.Plugins/HLWebHelloWorldPlugin/HLWebHelloWorldPlugin/Properties/AssemblyInfo.cs
r4605 r5072 36 36 [assembly: AssemblyFileVersion("1.0.0.0")] 37 37 [assembly: HLWebPluginViewLocations( 38 new string[] { "~/Plugins/HLWebHelloWorldPlugin.dll/HLWebHelloWorldPlugin.Views.{1}.{0}.aspx" },38 new string[] { "~/Plugins/HLWebHelloWorldPlugin.dll/HLWebHelloWorldPlugin.Views.{1}.{0}.aspx", "~/Plugins/HLWebHelloWorldPlugin.dll/HLWebHelloWorldPlugin.Views.{1}.{0}.ascx" }, 39 39 true, 40 40 action = "index", -
branches/WebApplication/MVC2/HeuristicLabWeb.Plugins/HLWebHelloWorldPlugin/HLWebHelloWorldPlugin/Views/HelloWorld/Index.aspx
r4605 r5072 1 1 <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> 2 3 <asp:Content ID="Content3" runat="server" ContentPlaceHolderID="SubMenuContent"> 4 <% Html.RenderAction("Menu"); %> 5 </asp:Content> 2 6 3 7 <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
Note: See TracChangeset
for help on using the changeset viewer.