active questions tagged master-pages - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:32:00Zhttp://stackoverflow.com/feeds/tag/master-pageshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822121/ninject-and-master-page-injection1Ninject and Master Page injectionDennyDotNet2009-11-30T20:12:27Z2009-12-01T16:30:07Z
<p>First off, I'm using Ninject 2.0</p>
<p>I have my master page which I would like to inject into but I'm not quite sure how. What I tried was created a class that derives from System.Web.Mvc.ViewMasterPage and then I create my properties:</p>
<pre><code>[Inject]
public ICacheService<List<Category>> Categories { get; set; }
[Inject]
public IConfigurationSettings Config { get; set; }
</code></pre>
<p>When I run my page neither of the properties get set and are both null. Any ideas on why or example on how to do this? Thanks</p>
<p><strong>-- Update</strong></p>
<p>So I've done more research and it seems I need to resolve the objects within the class myself because Ninject does not intercept the creation of the class. So now my question is how do I create a resolver for my kernel? The above code is within a class library so I don't have a reference to the kernel. I tried the following: (slightly modified from <a href="http://www.codethinked.com/post/2009/10/07/Our-Biggest-Enemy-Isne28099t-Developers-Who-Refuse-To-Move-Forward-It-is-Developers-Who-Pretend-To-Move-Forward.aspx" rel="nofollow">http://www.codethinked.com/post/2009/10/07/Our-Biggest-Enemy-Isne28099t-Developers-Who-Refuse-To-Move-Forward-It-is-Developers-Who-Pretend-To-Move-Forward.aspx</a> )</p>
<pre><code>public class KernelResolver
{
private static IKernel _kernel;
public KernelResolver(IKernel kernel)
{
_kernel = kernel;
}
public static T Resolve<T>()
{
return _kernel.Get<T>();
}
}
</code></pre>
<p>and then registered:</p>
<pre><code>Bind<KernelResolver>().ToSelf()
</code></pre>
<p>Yet kernel is null... I just need to see some examples but I can't find any or it could be that I'm so confused that I don't know what I'm looking for :\</p>
<p>Any help is much appreciated!</p>
http://stackoverflow.com/questions/1815224/asp-net-mvc-what-would-cause-a-partial-view-to-suddenly-not-be-found0[ASP.NET MVC] What would cause a partial view to suddenly not be found?Chad2009-11-29T10:49:23Z2009-11-29T11:57:36Z
<p>I'm baffled. My site <strong>randomly</strong> throws the following error:</p>
<pre><code>System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.InvalidOperationException: The partial view '/SiteUserMenu' could not be found. The following locations were searched:
/SiteUserMenu
at System.Web.Mvc.HtmlHelper.FindPartialView(ViewContext viewContext, String partialViewName, ViewEngineCollection viewEngineCollection)
at System.Web.Mvc.HtmlHelper.RenderPartialInternal(String partialViewName, ViewDataDictionary viewData, Object model, ViewEngineCollection viewEngineCollection)
at System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper htmlHelper, String partialViewName)
at ASP.views_shared_site_master.__Render__control1(HtmlTextWriter __w, Control parameterContainer)
</code></pre>
<p>Most of the time, the site runs fine... sometimes it throws the above error, which makes no sense to me. If the partial view wasn't found, why would it not be able to find it sometimes?</p>
<p>The partial view is saved in a folder named "en" under the Shared folder (inside of the views folder). Here's how I render the view:</p>
<pre><code><% Html.RenderPartial(ViewData["lang"] + "/SiteUserMenu"); %>
</code></pre>
<p>ViewData["lang"] is set in my base controller, in the OnActionExecuting action, like so:</p>
<pre><code>var l = (RouteData.Values["language"] != null) ? RouteData.Values["language"].ToString() : string.Empty;
if (string.IsNullOrEmpty(l))
l = "en";
if (l.Contains("en"))
{
IsEnglish = true;
l = "en";
}
else
l = "ja";
ViewData["lang"] = l.ToLower();
Language = l.ToLower();
</code></pre>
<p>Language and IsEnglish are properties of the base controller. The whole site uses them to maintain language selection and to make appropriate choices based on language. If language is not set, it will be set to "en". So ViewData["lang"] should always be available to my views.</p>
<p><strong>Any reason why a partial view couldn't be found somtimes, while most of the time (I'm talking 90% of the time) it works fine?</strong></p>
http://stackoverflow.com/questions/1812220/can-the-masterpage-be-designated-from-the-controller1Can the MasterPage be designated from the Controller?justSteve2009-11-28T10:48:24Z2009-11-28T11:28:02Z
<p>I have a couple different userTypes (Admin, User) and a MasterPage for each. I am beginning to create some Views that will be used by both userTypes where i would like to assign the MasterPage programmaticly (based on _currentUser).</p>
<p>Possible?</p>
<p>thx</p>
http://stackoverflow.com/questions/1797626/something-like-viewstate-and-session1Something like viewstate and sessionBlankenshipMQ2009-11-25T15:19:08Z2009-11-25T19:08:59Z
<p>The problem that I am having is as follows:</p>
<p>I currently have a custom class that generates buttons and places them on a placeholder on a master page.</p>
<p>The events for these buttons put specific values into session that differs values for a database query. In essence, the buttons serve as filters for charts.</p>
<p>After creating all the buttons, I realized that session values will stay constant from page to page, so everytime a user enters a different page while another is open, the filters selected on the open page will remain constant for the new page that is opened.</p>
<p>At first, I wanted to use viewstate rather than session, but then realized that a master page and a content page do not share the same viewstate.</p>
<p>At the current time, I am thinking of using a prefix for the sesson key that will identify what page the filters actually exist for. However, I am not wanting to overload session with numerous values if the user wishes to have many pages open at the same time.</p>
<p>Any solutions that would entail a way to share viewstate (or some other way to store values) between app_code, the master, and the content page?</p>
http://stackoverflow.com/questions/768236/how-to-create-a-strongly-typed-master-page-using-a-base-controller-in-asp-net-mvc6How to create a strongly typed master page using a base controller in ASP.Net MVCdarasd2009-04-20T13:25:43Z2009-11-25T05:37:57Z
<p>Hello. Following the <a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">NerdDinners</a> example, I am interested in creating a strongly typed master page. In order to achieve this, I use a base controller which retrieves the data for the master page. All other controllers inherit this class. Similarly, I have ViewModels for the master page and any other views. The view ViewModel classes inherit from the masterpage's ViewModel.</p>
<p>The problem is, how should a child controller ensure that the master page's data is passed to the View without setting the properties of its ViewModel that pertain to the master page itself [see the line that I want to eliminate in the final code fragment - that of the child controller]?</p>
<p>My the master page will display a number of buttons, which are determined in an xml file, hence the <code>Buttons</code> class that I am populating.</p>
<p>The master page's ViewModel. Holds button data for the master page.</p>
<pre><code>using System.Collections.Generic;
namespace Site1.Models
{
public class MasterViewModel
{
public List<Button> Buttons{set; get;}
}
}
</code></pre>
<p>A view's ViewModel. Inherits <code>MasterViewModel</code>. Contains other data for the view.</p>
<pre><code>namespace Site1.Models
{
public class View1ViewModel : MasterViewModel
{
public SomeDataClass SomeData { get; set; }
}
}
</code></pre>
<p>The base controller. Gets the data to populate the buttons.</p>
<pre><code>using System.Collections.Generic;
using System.Web.Mvc;
using Site1.Models;
namespace Site1.Controllers
{
public abstract class BaseController : Controller
{
protected MasterViewModel model = new MasterViewModel();
public BaseController()
{
model.Buttons = new List<Button>();
//populate the button classes (doesn't matter how)
PopulateButtons(model.Buttons);
}
}
}
</code></pre>
<p>A view's controller. Inherits <code>BaseController</code>. Gets the other data to populate the view, and returns the <code>View</code>, passing in the <code>View1ViewModel</code></p>
<pre><code>using System.Web.Mvc;
namespace Site1.Controllers
{
public class View1Controller : BaseController
{
public ActionResult Index()
{
Models.View1ViewModel viewModel = new Models.View1ViewModel();
SomeDataClass viewData = new SomeDataClass()
//populate data class (doesn't matter how)
PopulateDataClass(viewData);
viewModel.SomeData = viewData;
//I WANT TO ELIMINATE THE FOLLOWING LINE!
viewModel.Buttons = model.Buttons;
return View("Index", viewModel);
}
}
}
</code></pre>
<p>The master page inherits <code>System.Web.Mvc.ViewMasterPage<Site1.Models.MasterViewModel></code>.
The view inherits <code>System.Web.Mvc.ViewMasterPage<Site1.Models.View1ViewModel></code></p>
<p><strong>EDIT</strong>
Here is the solution, as suggested by Craig.</p>
<p>The action filter attribute. Gets the controller's ViewModel, and passes it to the controller's SetModel function</p>
<pre><code>using System.Web.Mvc;
using Site1.Controllers;
namespace Site1.Models
{
public class MasterAttribute : ActionFilterAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext)
{
base.OnActionExecuted(filterContext);
MasterViewModel viewModel = (MasterViewModel)((ViewResultBase)filterContext.Result).ViewData.Model;
BaseController controller = (BaseController)filterContext.Controller;
controller.SetModel(viewModel);
}
}
}
</code></pre>
<p>This function is added to the BaseController</p>
<pre><code>public void SetModel(MasterViewModel childViewModel)
{
childViewModel.Buttons = model.Buttons;
}
</code></pre>
http://stackoverflow.com/questions/1792461/how-do-i-inject-plain-text-into-an-asp-net-mvc1-master-page-from-a-child0How do I inject plain text into an asp.net MVC1 master page from a child?Maslow2009-11-24T19:44:25Z2009-11-25T00:53:20Z
<p>All the searches I've come up with talk about regular asp.net where there is a code behind page or you are accessing an asp.net control of some sort.</p>
<p>Since there is no code behind in the master page for Asp.net MVC how would I put a sub page
name in plain text/html just under the master page title?</p>
<pre><code> <div id="header">
<div id="menu">
<ul id="main">
<li class="current_page_item" id="menu"><%= Html.ActionLink("Home", "Index", "Home")%></li>
<%-- <li><%= Html.ActionLink("About", "About", "Home")%></li>--%>
</ul>
</div>
<div id="logo">
<h1><span>Defect Severity Assessment Tool</span></h1>
<p id="subpage"><%--*What goes here?*--%></p>
</div>
</div>
<div id="content">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
<div id="footer">
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1790186/masterpage-inside-iframe0MasterPage INSIDE iFrameTiago2009-11-24T13:50:37Z2009-11-24T13:52:44Z
<p>any remarks? Doesn't seem to be any info around. Doesn't seem to work either.</p>
http://stackoverflow.com/questions/1596199/use-contentplaceholders-default-content-instead-of-pages-content1Use ContentPlaceHolder's default content instead of page's contentJoseph Anderson2009-10-20T17:41:37Z2009-11-23T22:47:33Z
<p>When a page that uses a master page doesn't have an asp:Content control for one of the master page's ContentPlaceHolders, the default content is shown instead. I want to use that default content on a page that <strong>does</strong> have an asp:Content control for that ContentPlaceHolder.</p>
<p>In the page that uses the master page I want to decide in code whether to use the default content or the page-specific content. How can I show the default content from the master page instead of the content from the asp:Content control for the ContentPlaceHolderID?</p>
<p>For instance, say I have a ContentPlaceHolder for a menu. The default content shows a basic menu. The page builds the menu from a query, but if there's no result for the query I want to show the default menu. By default though, the empty asp:Content control will be shown. How do I get the master page's default content instead?</p>
http://stackoverflow.com/questions/1560260/masterpage-updatepanel-on-child-page1Masterpage + updatepanel on child pageATMILO2009-10-13T13:28:42Z2009-11-23T22:00:03Z
<p>So I have a masterpage with a login that is in an update panel. I have a child page that has a literal control that should update when the login updates. What it doesn't do is reload the method I use to generate the content for that literal when it posts back. I tried to call the method on the child page from the master page once you click log in, but I get an error that the literal control cannot be found (because it exists on the child page not the master page). How would I reference that control in the masterpage to pass it to my method?</p>
http://stackoverflow.com/questions/577937/sharepoint-search-on-default-masterpage1SharePoint Search on default MasterpageOliver S2009-02-23T15:11:59Z2009-11-23T21:10:20Z
<p>Hi, I am trying to enable the search bar on my default master page. In the source code of the master page there is the following:</p>
<pre><code><asp:ContentPlaceHolder id="PlaceHolderSearchArea" runat="server">
<SharePoint:DelegateControl runat="server" ControlId="SmallSearchInputBox"/>
</asp:ContentPlaceHolder>
</code></pre>
<p>In the render of the page in design mode it says [DelegateControl]. When I publish the page, I do not see a search box, I see nothing... can someone point me in the direction as how to enable search on my default master page, thanks.</p>
http://stackoverflow.com/questions/1773074/how-do-you-use-models-in-a-master-page-with-asp-net-mvc0How do you use Models in a master page with ASP.NET MVC?ognjenb2009-11-20T20:31:50Z2009-11-20T22:24:25Z
<p>public ActionResult Index(){</p>
<pre><code> var dataContext = new DataEvidencijaDataContext();
MembershipUser myObject = Membership.GetUser();
string KorisnickoIme = myObject.UserName.ToString();
var user = from i in dataContext.korisniks
where i.korisnik1 == KorisnickoIme
select i;
ViewData.Add("user", user);
return View(user);
}
</code></pre>
<p>In master page i put this
<%= Html.RenderPartial("profPredmeti", ViewData["user"])%></li>
but this is not work </p>
http://stackoverflow.com/questions/1767456/set-property-value-on-master-page-from-content-page0Set Property Value on Master Page from Content PageMerk2009-11-19T23:54:13Z2009-11-20T00:05:46Z
<p>Hello,</p>
<p>I tried following the advice posted here:
<a href="http://stackoverflow.com/questions/1071920/set-property-value-on-master-page-from-content-page">http://stackoverflow.com/questions/1071920/set-property-value-on-master-page-from-content-page</a>.</p>
<p>Specifically the last post about creating a class. However, visual studio keeps giving me an error on my default.aspx.cs page when i try to set the value:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : BasePage
{
protected override int NavHighlight
{
get { return new{0} ; }
}
protected void Page_Load(object sender, EventArgs e)
{
}
}
</code></pre>
<p>It throws an error on <code>new</code>, the error being: <code>cannot inplicity convert anonymoustype#1 to int</code></p>
<p>Can someone tell me what i might have done wrong here?</p>
<p>Here's what my class looks like:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
/// Summary description for BasePage
/// </summary>
public abstract class BasePage : System.Web.UI.Page
{
protected abstract int NavHighlight { get; }
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if (this.Master != null)
{
//value assignment
}
}
public BasePage()
{
//
// TODO: Add constructor logic here
//
}
}
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1762802/change-id-of-a-server-control-in-asp-net1change id of a server control in asp.netPandiya Chendur2009-11-19T11:56:23Z2009-11-19T14:56:13Z
<p>Hai guys,</p>
<p>I used find control to find a list item of an unoreder list inside a master page from content page using this,</p>
<pre><code>Control home = this.Page.Master.FindControl("list").FindControl("home");
</code></pre>
<p>Now i have to change the id of the control home to "current" because to apply css for it....</p>
http://stackoverflow.com/questions/1763211/apply-css-for-a-html-generic-control-like-ul-and-li-in-asp-net1apply css for a HTML Generic control like <UL> and <LI> in asp.netPandiya Chendur2009-11-19T13:13:33Z2009-11-19T14:45:20Z
<p>hai guys,</p>
<p>I dont know how to apply css for a HTML Generic control like <code><UL></code> and <code><LI></code> given <code>runat="server"</code> in asp.net.... I am finding the <code><li></code> in a master page from a content page... Once i found that control i want to apply css...</p>
http://stackoverflow.com/questions/1762506/find-a-unorderedlist-ul-control-inside-a-master-page-from-a-content-page-in-asp1Find a UnorderedList <UL> control inside a master page from a content page in asp.netPandiya Chendur2009-11-19T10:56:32Z2009-11-19T14:13:55Z
<p>Hai guys,</p>
<p>I want to find a UL control and then find a LI within that UL and assign a css class to that from a content page....</p>
<pre><code><ul id="mainMenu" runat="server" style="width:350px;">
<li id="mainHome" runat="server"><a title="Home" href="#" class="home">Home</a></li>
<li id="mainManage" runat="server"><a title="Manage" href="#" class="manage">Manage</a></li>
<li id="mainEnquiry" runat="server"><a title="Enquiry" href="#" class="enquiry">Enquiry</a></li>
<li id="mainReport" runat="server"><a title="Report" href="#" class="report">Reports</a></li>
</ul>
</code></pre>
<p>If the user clicks home it is redirected to users.aspx page and i want to highlight Home LI with a color... Plz give me suggestion...</p>
http://stackoverflow.com/questions/1759235/user-controls-called-from-child-pages-do-not-appear-on-master-page0User controls called from child pages do not appear on master page.AlexDemers2009-11-18T21:33:37Z2009-11-18T22:35:39Z
<p>Hey,</p>
<p>I have a custom user control in ASP.net:</p>
<p>MenuButton.ascx:</p>
<pre><code><%@ Control Language="C#" AutoEventWireup="true" CodeFile="~/MenuButton.ascx.cs" Inherits="MenuButton" ClassName="MenuButton" %>
<li><a href="<%= Link %>"><span><%= Text %></span></a></li>
</code></pre>
<p>MenuButton.ascx.cs:</p>
<pre><code>using System;
public partial class MenuButton : System.Web.UI.UserControl
{
public String Link = "test.html";
public String Text = "TEST";
protected void Page_Load(object sender, EventArgs e)
{
}
}
</code></pre>
<p>MasterPage.master has this:</p>
<pre><code><%@ Reference Control="~/MenuButton.ascx" %>
<%@ Register Src="~/MenuButton.ascx" TagName="Menu" TagPrefix="button" %>
<ul runat="server" id="Menu"></ul>
</code></pre>
<p>MasterPage.master.cs</p>
<pre><code>public List<MenuButton> Menus = new List<MenuButton>();
protected void Page_Load(object sender, EventArgs e)
{
foreach (var control in Menus)
{
Menu.Controls.Add(control);
}
}
</code></pre>
<p>Default.aspx</p>
<pre><code>Master.Menus.Add( new MenuButton { Text = "Test1", Link = "test1.html" });
</code></pre>
<p>It compiles OK, even with the debugger it does what it should do but they just don't appear on my page. Am I missing something here?</p>
<p>Thanks.</p>
<p><hr></p>
<p>Edit 1:</p>
<p>I tried to override OnInit on my master page:</p>
<pre><code>protected override void OnInit(EventArgs e)
{
base.OnInit(e);
foreach (var control in SousMenus)
{
SousMenu.Controls.Add(control);
}
}
</code></pre>
<p>It didn't work also.</p>
http://stackoverflow.com/questions/1757289/where-does-error-cs0433-type-x-already-exists-in-both-a-dll-and-b-dll-come-f0Where does error CS0433 "Type 'X' already exists in both A.dll and B.dll " come from?Abel2009-11-18T16:34:05Z2009-11-18T16:37:59Z
<p>When I run a webapp from Visual Studio 2008 SP1 using the internal web server (not IIS) I receive the above mentioned error.</p>
<p>The full error (source file <em>Default.aspx.cs</em>):</p>
<blockquote>
<p>Compiler Error Message: CS0433: The
type 'WebApplication3.Site1' exists in
both
'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary
ASP.NET
Files\root\aa563bcf\59deedc0\App_Web_site1.master.cdcab7d2.muczzy9v.dll'
and
'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary
ASP.NET
Files\root\aa563bcf\59deedc0\assembly\dl3\44c3a3cf\80dd34ed_6968ca01\WebApplication3.DLL'</p>
</blockquote>
<p>The preceding full warning:</p>
<blockquote>
<p>Warning: CS0436: The type
'WebApplication3._Default' in
'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary
ASP.NET
Files\root\aa563bcf\59deedc0\App_Web_default.aspx.cdcab7d2._tlkwdos.0.cs'
conflicts with the imported type
'WebApplication3._Default' in
'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary
ASP.NET
Files\root\aa563bcf\59deedc0\assembly\dl3\44c3a3cf\e096e61c_6568ca01\WebApplication3.DLL'.
Using the type defined in
'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary
ASP.NET
Files\root\aa563bcf\59deedc0\App_Web_default.aspx.cdcab7d2._tlkwdos.0.cs'.</p>
</blockquote>
<p>Source of warning points to an intermediate file <em>App_Web_default.aspx.cdcab7d2._tlkwdos.0.cs</em>:</p>
<pre><code>Line 162:
Line 163: [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
Line 164: public class default_aspx : global::WebApplication3._Default, System.Web.IHttpHandler {
Line 165:
Line 166: private static bool @__initialized;
</code></pre>
<p>and my question: where does this come from?</p>
<p>The webapp (not website!) has one <em>Default.aspx</em> and one <em>Site1.Master</em>, no dependencies. They're almost empty, with an <code>asp:Label</code> on the page. Previously, this webapp worked fine. When I remove any references in Default.aspx.cs to the master, all goes well. The master has some code only.</p>
<p>It's actually one of many little fire-and-forget test webapps, so I couldn't care less. But I hadn't seen this before and now I'm curious of what to do, other then copying code into a new project (cleaning solution doesn't help).</p>
<p>Note: I've read <a href="http://stackoverflow.com/questions/371426/asp-net-error-the-type-foo-exists-in-both-temp1-dll-and-temp2-dll">this post</a> and some others, they don't apply.</p>
http://stackoverflow.com/questions/1756175/unable-to-generate-a-custom-path-in-asp-net-mvc-master-pages2Unable to generate a custom path in ASP.NET MVC Master Pages. Nat Ryall2009-11-18T13:56:50Z2009-11-18T14:46:24Z
<p>I am working in an ASP.NET MasterPage and am having trouble with <code><link href="..." /></code>.</p>
<p>I am trying to substitute in a stylesheet with a specific name:</p>
<pre><code><link href="/Content/Styles/<%=Model.Style%>.css" rel="stylesheet" type="text/css" />
</code></pre>
<p>Unfortunately, this creates the HTML output:</p>
<pre><code><link href="/Content/Styles/&lt;%=Model.Style%>.css" rel="stylesheet" type="text/css" />
</code></pre>
<p>Which is clearly not what was intended.</p>
<p>If I put the same code in a View placeholder, it works perfectly. This is not a good solution though as I have many pages where I just want it to do the same thing.</p>
<p>It looks like it's trying to automatically correct the URL - is there a way to switch this off?</p>
<p><hr></p>
<h2>Edit 1:</h2>
<p>I have fixed this temporarily using:</p>
<pre><code><link href=<%=String.Format("\"/Content/Styles/{0}.css\"", Model.Style)%> rel="stylesheet" type="text/css" />
</code></pre>
http://stackoverflow.com/questions/928911/strongly-typed-master-pages-polymorphism-nested-masterpages-ignore-inherit-attr1Strongly typed master pages polymorphism - nested masterpages ignore inherit attributeCharlino2009-05-30T03:17:56Z2009-11-16T00:02:57Z
<p>I'm currently creating a CMS system and found that the following doesn't work.</p>
<p>I do have a work around that isn't exactly ideal and feels dirty. I'm cool with it for now and not really that interested in a different approach (but don't let that stop you answering). What I am after is some kind of explaination on why it doesn't work - is it a bug in ASP.NET MVC?</p>
<p>It's hard to explain so I'll let my code (minus alot of fluff) do the talking... hope it makes sense!</p>
<p><strong>EDIT:</strong> It seems that the compiler totally ignores the second masterpage's 'inherits' attribute - see at the bottom of the question.</p>
<p><strong>ContentViewData.cs</strong> - notice it inherits from <strong>BaseViewData</strong></p>
<pre><code>public class ContentViewData : BaseViewData
{
public MyCMS.Data.Models.Content ContentItem { get; set; }
}
</code></pre>
<p><strong>Site.Master</strong> - Notice the strongly typed viewdata of type <strong>BaseViewData</strong></p>
<pre><code><%@ Master
Language="C#"
Inherits="System.Web.Mvc.ViewMasterPage<MyCMS.WebSite.ViewData.BaseViewData>" %>
</code></pre>
<p><strong>Content.Master</strong> - Notice the strongly typed viewdata of type <strong>ContentViewData</strong> and the fact that it's a child masterpage of <strong>Site.Master</strong></p>
<pre><code><%@ Master
Language="C#"
MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewMasterPage<MyCMS.WebSite.ViewData.ContentViewData>" %>
...blah blah blah...
<% Html.RenderPartial("ContentItemImage", Model.ContentItem); %>
</code></pre>
<p><strong>ContentItemImage.ascx</strong></p>
<pre><code><%@ Control
Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<MyCMS.Data.Models.Content>" %>
<% if (Model.HasPrimaryPhoto)
{ %>
<img src="/content/photos/<%= Model.GetPrimaryPhoto.ThumbFileName %>"
title="<%= Model.GetPrimaryPhoto.Caption %>" />
<% } %>
</code></pre>
<p>Now inside the Content.Master if I try and render the ContentItemImage partial and refer to a property on the ContentViewData object (specifically the 'ContentItem' property) like I have - repeated below.</p>
<pre><code><% Html.RenderPartial("ContentItemImage", Model.ContentItem); %>
</code></pre>
<p>If falls over on that line with the following error</p>
<blockquote>
<p>Compilation Error</p>
<p>CS1061: 'object' does not contain a definition for 'ContentItem' and no
extension method 'ContentItem'
accepting a first argument of type
'object' could be found (are you
missing a using directive or an
assembly reference?)</p>
</blockquote>
<p>BUT if I change things up like so, it all works fine and dandy.</p>
<p><strong>Content.Master</strong> - Notice I'm passing into RenderPartial() the whole Model (ContentViewData object) rather than trying to refer to a property on the ContentViewData object</p>
<pre><code><%@ Master
Language="C#"
MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewMasterPage<MyCMS.WebSite.ViewData.ContentViewData>" %>
...blah blah blah...
<% Html.RenderPartial("ContentItemImage", Model); %>
</code></pre>
<p><strong>ContentItemImage.ascx</strong> - notice the changed strongly typed viewdata from MyCMS.Data.Models.Content to the ContentViewData class.</p>
<pre><code><%@ Control
Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<MyCMS.WebSite.ViewData.ContentViewData>" %>
<% if (Model.ContentItem.HasPrimaryPhoto)
{ %>
<img src="/content/photos/<%= Model.ContentItem.GetPrimaryPhoto.ThumbFileName %>"
title="<%= Model.ContentItem.GetPrimaryPhoto.Caption %>" />
<% } %>
</code></pre>
<p>So yeah, that works but it aint go not alibi.</p>
<p>Thanks in advance,
Charles.</p>
<p><strong>EDIT:</strong> Interestingly it seems that the compiler totally ignores the second master page's 'inherits' attribute.</p>
<p>Eg. I can do this and it still compiles without a complaint...</p>
<pre><code><%@ Master
Language="C#"
MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewMasterPage<ThisDoesntExist.AtAll>" %>
</code></pre>
http://stackoverflow.com/questions/1736867/need-workaround-for-net-master-page-name-mangling1Need workaround for .Net Master Page Name ManglingRyu2009-11-15T07:18:13Z2009-11-15T10:49:52Z
<p>I'm evaluating converting an old frameset based asp.net website to use master pages. The only thing holding me back is the huge amount of work it will take to update every page to deal with name mangling. Most of my problems are with javascript referencing hardcoded Id's.</p>
<p>Is there a way for me to tell ASP.Net that for a particular content area that I don't want mangling to occur. Leave it to me deal with name conflicts. </p>
<p><strong>Note</strong></p>
<p>I'm aware .Net 4.0 has a solution for this as <a href="http://www.west-wind.com/WebLog/posts/54760.aspx" rel="nofollow">detailed here</a>. I want a solution that doesn't involve waiting, needs to be .Net 3.5.</p>
<p><strong>Update</strong></p>
<p>Any suggestions for opensource alternatives to masterpages that will get me by until .Net 4.0? Or how about a hack job solution to work around the mangling. Thanks</p>
http://stackoverflow.com/questions/1737142/unwanted-caching-of-usercontrols-and-masterpages-forcing-iisreset0Unwanted caching of usercontrols and masterpages forcing iisresetMarcus2009-11-15T10:01:29Z2009-11-15T10:13:37Z
<p>My setup is a standard Windows 7, Visual studio 2008 and IIS 7.5 and I suffer from unwanted caching of usercontrols and masterpage files. Often but not always when I make changes in a usercontrol in Visual studio I have to reset the IIS to be able to see the changes I made in the HTML. I have also experienced this problem with IIS 6 and Windows server 2003. Anyone have a solution for this problem?</p>
http://stackoverflow.com/questions/1720477/login-controls-in-an-asp-net-mvc-master-page0Login controls in an ASP.NET MVC master pageJacob2009-11-12T07:17:56Z2009-11-14T04:54:03Z
<p>I have an ASP.NET MVC 2 web site in which I'd like to place login controls in the master page. I want any validation error messages to appear in the master page as well. How would I go about doing this? If I do something like this:</p>
<pre><code><% using (Html.BeginForm("LogOn", "Account", FormMethod.Post)) { %>
<%= Html.LabelFor(d => d.UserName)%>:
<%= Html.EditorFor(d => d.UserName)%>
<%= Html.LabelFor(d => d.Password)%>:
<%= Html.Password("Password")%>
<input type="submit" value="Login" />
<%= Html.ValidationSummary() %>
<% } %>
</code></pre>
<p>...the account controller method gets called just fine. However, when I return <code>View()</code> from the method, I get an error that no view called "LogOn" exists. How do I achieve my intended result.</p>
http://stackoverflow.com/questions/1031597/how-to-make-usercontrol-to-use-master-page-placeholders0How to make UserControl to use master page placeholders?igor2009-06-23T09:47:40Z2009-11-13T21:00:16Z
<p>Hello all.</p>
<p>There's quite weird issue and I wonder if it had ever occurred before.
It looks odd that nobody had been caught by it, by Google says so.</p>
<p>that's what we have:</p>
<p>Master page</p>
<p>Masterpage.master</p>
<p> blahblagblag</p>
<p>User control whose page is bound to mentioned-above master page</p>
<p>According design, we need to define from .ascx user control</p>
<pre><code>SomeControl.ascx
<asp:Content ContentPlaceHolderID="phMaster"> // this will not work, and issue is to make it work
</code></pre>
<p>But how to do it, considering that user controls cannot be bound to masterpage?</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1729713/is-changing-the-master-page-behavior-mode-from-content-page-a-bad-idea0Is changing the Master Page behavior "mode" from Content Page a bad idea?Greg2009-11-13T14:55:43Z2009-11-13T17:21:27Z
<p>I have a Master Page that has two different "modes" of behavior: "strict input restrictions" and "relaxed input restrictions". The code for what these two modes mean is completely contained in the Master Page and 95% of the functionality of the Master Page is unaffected by this setting.</p>
<p>Content Page A will always use the "strict input restrictions" mode while Content Page B will always use the "relaxed input restrictions" mode.</p>
<p>I've been setting a property of the Master Page from the Content Page to choose the mode, but this feels kludgy. Is there a better way to handle the situation? </p>
<p>I think it's a design-time decision, but it seems like I'm handling it in a run-time way.</p>
http://stackoverflow.com/questions/48794/html-renderpartial-call-from-masterpage4Html.RenderPartial call from masterpageDragan Panjkov2008-09-07T21:16:55Z2009-11-13T07:09:49Z
<p>Here is a scenario: Let's say I have site with two controllers responsible for displaying different type of content - Pages and Articles. I need to embed Partial View into my masterpage that will list pages and articles filtered with some criteria, and be displayed on each page. I cannot set Model on my masterpage (am I right?). How do I solve this task using Html.RenderPartial?</p>
<p>[EDIT]
Yes, I'd probably create separate partial views for listing articles and pages, but still, there is a barrier that I cannot and shouldn't set model on masterpage. I need somehow to say "here are the pages" as an argument to my renderpartial, and also for articles. Entire concept of renderpartial with data from database in masterpages is a bit blurry to me.</p>
http://stackoverflow.com/questions/1721171/binding-data-to-detailsview-inside-webpart-and-masterpage0binding data to detailsview inside webpart and masterpagesansknwoledge2009-11-12T09:59:11Z2009-11-12T09:59:11Z
<p>hi, i am having a master page with a webpartzone inside the webpartzone i am having a detailsview now i want to bind the data to the detailsview from one of the content form i tried but it is not working any ideas
my code is
Dim myMaster As MasterPage = DirectCast(Me.Master, MasterPage)
Dim webpt As WebPartZone = DirectCast(myMaster.FindControl("WebPartZone1"), WebPartZone)
If Not IsNothing(webpt) Then
Dim dv As DetailsView = CType(myMaster.FindControl("dvapqp"), DetailsView)
dv.DataSource = ds.Tables(0)
dv.DataBind()
End If</p>
http://stackoverflow.com/questions/101125/force-browser-to-use-new-css3Force browser to use new CSScgreeno2008-09-19T11:08:45Z2009-11-11T18:32:57Z
<p>Is there a way to check if the user has a different version of the CSS cached by their browser and if so force their browser to pull the new version?</p>
http://stackoverflow.com/questions/1704808/net-templates-which-page-am-i-on0.net templates which page am I on?flavour4042009-11-10T00:07:15Z2009-11-10T19:16:57Z
<p>Hi,</p>
<p>I'm curious to know that using .net 2.0 with a master page if there is a way that I can pick up what page I am on so that i can use it to style a tab?</p>
<p>My master page has a nav bar on it, and what I wan to do is:</p>
<p>If the user is, say on the contact page, that the tab for the contact page would be a different color, can this be achieved. I have seen some examples that don't use master pages and of course you can use the encapsulating body tag to signify where you are but this isn't available with a masterpage.</p>
<p>Thanks R.</p>
http://stackoverflow.com/questions/1698508/vertical-and-horizontal-scrolls-not-working0vertical and horizontal scrolls not workingunknown (google)2009-11-09T00:37:37Z2009-11-09T17:20:04Z
<p>I have a master page which is using the style sheet..</p>
<p>My problem is that my vertical scrollbar does not work and horizontal scrollbar is not showing when i restore down the page.</p>
<p>here is my .aspx code..</p>
<pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>test</title>
<meta name="generator" content="HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org" />
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<link href="NewFolder1/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.style1
{
font-size: medium;
font-weight: bold;
}
.style2
{
text-align: left;
}
</style>
</head>
<body bgcolor="#6794cb" >
<form id="form2" runat="server"
style="background-color: #6794CB;padding-bottom:1%; padding-top: 2%; width:100%; height:100%;">
<div id="container" style="visibility: visible;">
<div id="header">
<div class="style2">
&nbsp;&nbsp;&nbsp;
<asp:TextBox ID="TextBox1" runat="server" BorderColor="#000099" BorderWidth="2px"></asp:TextBox>
&nbsp;
<asp:Button ID="Button1" runat="server" Text="Search" BackColor="#ADC6C9"
BorderColor="#CCCCCC" BorderStyle="Outset" />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:HyperLink ID="HyperLink1" runat="server">corp\tbruschi</asp:HyperLink>
&nbsp;
<asp:HyperLink ID="HyperLink2" runat="server">Settings</asp:HyperLink>
&nbsp;
<asp:HyperLink ID="HyperLink3" runat="server">Help</asp:HyperLink>
&nbsp;
<asp:HyperLink ID="HyperLink4" runat="server">LogOff</asp:HyperLink>
<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;
<span class="style1"><br />
</span><br />
<asp:Panel ID="Panel1" runat="server" Width="100%">
<hr style="padding: 1px; background-color: #000000" />
</asp:Panel>
<br />
</div>
</div>
<!-- end header -->
<div id="left">
<asp:Panel ID="Panel3" runat="server" Height="100%" ScrollBars="Auto"
Width="100%">
<p>
&nbsp;</p>
<br />
<asp:TreeView ID="TreeView2" runat="server" OnUnload="TreeViewMain_Unload"
ontreenodepopulate="TreeView2_TreeNodePopulate"
onselectednodechanged="TreeView2_SelectedNodeChanged">
<Nodes>
<asp:TreeNode PopulateOnDemand="True" Text="Machine Groups"
Value="Machine Groups"></asp:TreeNode>
</Nodes>
</asp:TreeView>
<br />
<asp:TreeView ID="TreeView3" runat="server" OnUnload="TreeView3_Unload"
ontreenodepopulate="TreeView3_TreeNodePopulate"
onselectednodechanged="TreeView3_SelectedNodeChanged">
<Nodes>
<asp:TreeNode PopulateOnDemand="True" Text="Policies"
Value="Policies"></asp:TreeNode>
</Nodes>
</asp:TreeView>
<br />
</asp:Panel>
</div>
<div id="content-wrapper">
<div id="content-inner">
<!-- end left division -->
<div id="main">
<asp:ContentPlaceHolder id="ContentPlaceHolder2" runat="server">
</asp:ContentPlaceHolder>
</div>
</div>
</div> <!-- end footer -->
</div>
</form>
</body>
</html>
</code></pre>
<p>**</p>
<p>And here is my Css file code..</p>
<pre><code> body
{
font-family: arial, verdana, helvetica, sans-serif;
font-size: 12px;
cursor: default;
background-color: #FFFFFF;
width: 100%;
height: 100%;
}
*
{
margin: 0px 0px 0px 1px;
padding: 0px;
text-align: left;
}
html
{
height: 100%;
margin-bottom: 1px;
}
#container
{
width: 80%;
margin-right: auto;
margin-left: auto;
text-align: left;
background-color: #FFFFFF;
height: 595px;
}
#header {
width:100%;
padding-top:15px;
height: 121px;
}
.spacer {
width:100%;
height:15px;
}
hr {
border-style: none;
border-color: inherit;
border-width: 0px;
color:Black;
background-color:#CDCDCD;
height: 0px;
width: 100%;
text-align: left;
}
h1 {
font-size:28px;
color:white;
background-color: #4F81BD;
font-family:Arial, Verdana, Helvetica, sans-serif;
font-weight:300;
}
h2 {
font-size:15px;
color:Black;
font-family:Arial, Verdana, Helvetica, sans-serif;
font-weight:300;
background-color:#FFFFFF;
}
h3 {
color:Black;
font-size:15px;
text-align:left;
font-weight:300;
padding:5px;
margin-top:5px;
}
#left {
float:left;
width:250px;
background-color:#FFFFFF;
color:black;
height: 417px;
}
#main
{
margin: 1px 5px 5px 260px;
border-left: 1px solid silver;
height: 409px;
padding-right: 3px;
padding-bottom: 3px;
padding-left: 3px;
}
p {
color:black;
background-color:#FFFFFF;
line-height:20px;
padding:5px;
}
a {
color:Blue;
text-decoration:none;
}
a:hover {
color:#cc0000;
text-decoration:underline;
}
#footer {
clear:both;
font-size:12px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}
.right {
color:gray;
background-color:#FFFFFF;
float:right;
font-size:100%;
margin-top:5px;
}
.left {
color:gray;
background-color:#FFFFFF;
float:left;
font-size:100%;
margin-top:5px;
}
</code></pre>
<p>I have tried a lot of stuff but nothing seems to work... it will be great if some 1 could have a look and guide me in the right direction..</p>
<p>Thanks</p>
<p>when the browser window is restored down the content on the page gets cramped up..</p>
<p>This means i have to keep the content in the body or main to be fixed.. i dont know how to do that any help..???</p>
http://stackoverflow.com/questions/1696536/how-do-can-designers-work-with-asp-net1How do/can designers work with ASP.NETOlav2009-11-08T13:31:07Z2009-11-09T05:02:27Z
<p>On most projects I've been one, designers has produced HTML code, then developers turned it into ASP.NET, including master-pages etc that should really be a part of design.</p>
<p>After it has become ASP.NET, designers could not work on the code with their tools.</p>
<p>I know that a lot of the design of ASP.NET is made with the purpose of separating code and design, and in principle designers should be able to work on design aspects with the Visual Web Developer, but I've never seen a designer using VWD.</p>
<p>How is cooperation done in practice, and what is about the best one can expect from a designer?</p>