active questions tagged masterpage - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T23:17:58Zhttp://stackoverflow.com/feeds/tag/masterpagehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930323/how-to-load-content-pages-async-using-jquery0How to load content pages async using jQuery?Rey2009-12-18T19:48:54Z2009-12-20T20:24:41Z
<p>TGIF,</p>
<p>I have a website I'm developing which is using ASP.NET masterpage/sitemap/content pages setup. I hate the "blinking" the site does when navigating between content pages using the asp:menu control. Any suggestions on how to use jQuery ajax instead of AJAX.NET updatepanels? I've used updatepanels in the past and I hate it; clunky and bloated.</p>
<p>Here's the code:</p>
<pre><code><%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!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 runat="server">
<link href="styles/master.css" rel="stylesheet" type="text/css" />
<title>Impeccable Construction Service</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<cc1:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Path="~/scripts/jquery-1.3.2.js" />
</Scripts>
</cc1:ToolkitScriptManager>
<div id="main">
<div class="header">
<asp:Image ID="HeaderLogo" runat="server" ImageUrl="images/header-logo.png" />
<asp:Image ID="SubHeader" runat="server" ImageUrl="images/sub-header.png" />
</div>
<div class="navbar">
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
<asp:Menu ID="NavMenu" runat="server" Orientation="Horizontal" DataSourceID="SiteMapDataSource1"
StaticDisplayLevels="2" MaximumDynamicDisplayLevels="4" DynamicHorizontalOffset="1"
StaticSubMenuIndent="1px" DynamicPopOutImageUrl="images/right-arrow.gif" StaticPopOutImageUrl="images/drop-arrow.gif"
CssClass="NavMenu" Height="30px">
<StaticMenuItemStyle ItemSpacing="10" CssClass="staticMenuItemStyle" />
<StaticHoverStyle CssClass="staticHoverStyle" />
<StaticSelectedStyle CssClass="staticMenuItemSelectedStyle" />
<DynamicMenuItemStyle CssClass="dynamicMenuItemStyle" />
<DynamicHoverStyle CssClass="menuItemMouseOver" />
<DynamicMenuStyle CssClass="menuItem" />
<DynamicSelectedStyle CssClass="menuItemSelected" />
<DataBindings>
<asp:MenuItemBinding DataMember="siteMapNode" NavigateUrlField="url" TextField="title"
ToolTipField="description" />
</DataBindings>
</asp:Menu>
<asp:SiteMapPath ID="SiteMapPath1" runat="server" RenderCurrentNodeAsLink="true"
PathSeparator=" >> " CssClass="currentNodeStyle">
<PathSeparatorStyle ForeColor="#5D7B9D" CssClass="currentNodeStyle" />
<CurrentNodeStyle ForeColor="#333333" CssClass="currentNodeStyle" />
<NodeStyle ForeColor="#7C6F57" CssClass="currentNodeStyle" />
<RootNodeStyle ForeColor="#5D7B9D" CssClass="currentNodeStyle" />
</asp:SiteMapPath>
</div>
<div id="content">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<div class="footer">
<h4>
Rivera Design Studio
</h4>
</div>
</div>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1922525/proper-use-of-masterpages1Proper use of MasterPagesPaulj2009-12-17T15:30:15Z2009-12-17T17:21:29Z
<p>I've been looking into different methods of implementing masterpages. </p>
<ol>
<li>Use the masterpage only for layout, include common controls on every page
</li>
<li>Include controls on the masterpage, use a masterpage abstract base class and override it's properties in the masterpage class. This caused the masterpage events to no longer wire up. I could probably fix this, but it's a long way to go just for a single textbox value.</li>
<li>use good 'ol Page.Master.FindControl()</li>
</ol>
<p>I've read that findcontrol should be avoided (uses magic "label1" strings, supposedly uses too many resources) and masterpages are only for layout. If masterpages are only for layout, do I copy and paste common controls across 100's of pages? </p>
<p>What's the best practice that deals with displaying and accessing common site controls (like a search)? Considering the alternatives, using findcontrol to get a masterpage control doesn't seem that bad.</p>
http://stackoverflow.com/questions/1909159/early-response-termination-when-using-an-asp-net-master-page0Early response termination when using an ASP.NET Master PageJack Hayter2009-12-15T17:48:31Z2009-12-16T00:07:37Z
<p>I have a page which needs to terminate execution of it's code (which is run at render) but not stop the execution of the MasterPage.</p>
<p>The problem is this,
page 'Default.aspx' uses the masterpage 'MasterPage1.aspx'. The code in Default.aspx checks a certain condition and if found to be true, Default.aspx needs to stop executing, but render the rest of the MasterPage.</p>
<p>I found that if I call response.end() in default.aspx, the rendering of the MasterPage is also terminated.</p>
<p>So what I am looking for is an alternative which stops execution in default.aspx, but still renders the rest of the MasterPage.</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1889383/masterpage-intelligencia-url-rewrite-and-updatepanel-possible0Masterpage, Intelligencia url rewrite and updatepanel = possible ?Mark2009-12-11T16:58:31Z2009-12-14T17:44:40Z
<p>Hello all,</p>
<p>I cannot seem to get my updatepanel to work while using urlrewrite. It does work in terms of code execution, but it refreshed my whole page instead of the usercontrol which contains the updatepanel. Am I missing some very basic things here?
I hope someone can help me thanks for reading!
Kind regards,
mark</p>
http://stackoverflow.com/questions/1885708/how-can-i-insert-login-control-on-the-top-of-default-page0how can i insert login control on the top of default page sumit2009-12-11T04:04:26Z2009-12-11T04:44:25Z
<p>in my master page there is a login status when i click on it the page is redirected to login page.now i want to create login control in the home page itself so that users dont have to visit loginpage again and again..i guess i cant create the login control in the masterpage .it has to be in the default page but then how can i put that control on the top of the page . i have also used login control in masterpage but then my other control ion login page doesnt work properly</p>
http://stackoverflow.com/questions/1882065/how-to-display-none-through-code-behind1how to display none through code behindsumit2009-12-10T16:09:51Z2009-12-10T16:26:13Z
<p>I have tried this </p>
<pre><code>login_div.Style("display") = "none";
</code></pre>
<p>But it's not working.how can I set the display of the div to none through code behind,
in aspx I have a div:</p>
<pre><code><div id="login_div" runat="server">
</code></pre>
http://stackoverflow.com/questions/1865257/asp-net-mvc-how-can-i-easily-change-the-tab-color-of-my-navigation-menu-based-o1ASP.Net MVC: How can I easily change the tab color of my navigation menu based on the tab that I'm on?Ben2009-12-08T07:32:43Z2009-12-08T07:59:32Z
<p>I want to implement my navigation tabs somewhat like the ones on this site, and I've heard that this was built using ASP.Net MVC. If I'm on stackoverflow.com/users, than the "Users" menu tab is orange and all others stay grey, same if a different tab is selected.</p>
<p>I am pretty good with manipulating the css to change color when it's hovered or selected, etc, and adding/removing/authorizing items in the menu container, but not familiar with how to change the color of the tab based on the tab page that I'm on. Any quick and dirty way to accomplish this?</p>
http://stackoverflow.com/questions/1800537/when-is-the-masterpagefile-located-in-asp-net-mvc-webforms-viewengine0When is the MasterPageFile located in ASP.NET MVC WebForms ViewEngineBaddie2009-11-25T22:59:16Z2009-12-01T17:04:52Z
<p>When is the MasterPageFile property of a view/page checked that it exists in ASP.NET MVC WebForms view engine?</p>
<p>What I want to do is have the following code not output the error:</p>
<blockquote>
<p>Parser Error Message: The file '/SomePlaceThatDosentExist/Site.Master' does not exist.</p>
</blockquote>
<p>Defined as such in my view's .aspx file:</p>
<pre><code><%@ Page Language="C#" MasterPageFile="~/SomePlaceThatDosentExist/Site.Master" Inherits="System.Web.Mvc.ViewPage" >
</code></pre>
<p>Where would I need to write some code to go in and define a valid MasterPageFile property?</p>
<p>I have tried the following in my custom ViewPage class that my views inherit</p>
<pre><code> public override string MasterPageFile
{
get
{
return base.MasterPageFile;
}
set
{
base.MasterPageFile = "~/RealPlace/Site.Master";
}
}
</code></pre>
<p>and tried the following also (in a custom view page class that my views inherit)</p>
<pre><code> protected override void OnPreInit(EventArgs e)
{
base.MasterPageFile = "~/RealPlace/Site.Master";
base.OnPreInit(e);
}
</code></pre>
<p>In both cases, the error I stated above is displayed. </p>
<p>From what I know, OnPreInit is the earliest point in a ViewPage's lifecycle, so is it possible to go even earlier in the lifecycle?</p>
<p>Note before you write and answer:</p>
<ul>
<li>I know about return View("ViewName", "MasterPageName");</li>
<li>I know about dynamic master pages, but I want to accomplish this specific task</li>
</ul>
http://stackoverflow.com/questions/1827154/state-in-asp-net-master-page0State in ASP.net Master PageShiraz Bhaiji2009-12-01T16:03:37Z2009-12-01T16:54:27Z
<p>We have a bug that we are trying to fix. It looks like one user can see another users data it they hit the same aspx page at the same time.</p>
<p>I was wondering: If we store data in a property on the master page, will all pages running at the same time see that data.</p>
<p>Have a master page:</p>
<pre><code>public class MyMasterBase : System.Web.UI.MasterPage
{
private int myInt;
}
</code></pre>
<p>Create reference to master page from the aspx page:</p>
<pre><code>MyMasterBase master = Page.Master as MyMasterBase;
</code></pre>
<p>Two users then call the aspx page at the same time:</p>
<ul>
<li>The first user sets myInt to 1</li>
<li>The second user sets myInt to 2</li>
<li>If the first user reads the myInt value what will it be?</li>
</ul>
<p>I expect that it would be 1, but if it was 2 it would explain our bug :)</p>
<p>Thanks</p>
<p>Shiraz</p>
http://stackoverflow.com/questions/1799886/are-master-pages-the-way-to-go3Are master pages the way to go?Velika2009-11-25T20:55:52Z2009-11-25T23:51:55Z
<p>I may be nuts, but master pages scare me because I fear that once I am locked into using a master page, I will encounter a situation where I will want to inherit only 90% of the visual content of the master page, forcing me to break the inheritance and thus having to reproduce the content that was in the master and bring it into the child.</p>
<p>I sense that this is a problem with any kind of "inheritance" in that you have to be careful, but it seems that at least you can override methods in a regular class.</p>
<p>I'm probably not too coherent here, but user controls seem to give you more flexibility. The only draw back is that you have to drag them onto a webform. To that, I say big deal.</p>
<p>Converting my app from using usercontrols to master pages is scaring me and I am afraid that my Javascript will break. </p>
<p>Comments?</p>
http://stackoverflow.com/questions/1790266/masterurl-default-master-does-not-exist0~masterurl/default.master does not existCiprian Grosu2009-11-24T14:03:40Z2009-11-25T08:31:15Z
<p>Hello all,</p>
<p>I try to create a custom webpart page. I tried a book example that start with : </p>
<pre><code><%@ Page MasterPageFile="~masterurl/default.master"
Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,
Microsoft.SharePoint, [full 4-part assembly name]"
meta:progid="SharePoint.WebPartPage.Document" %>
</code></pre>
<p>....but no result....
The page is deployed into _layouts folder but when I try to access it from browser I get : "_layouts/~masterurl/default.master does not exist".
What I do wrong ?</p>
<p>Thank you in advance !</p>
<p>Solved the problem : read again the book and indeed I did not have to add the page to _layouts folder. Thank you for opening my eyes :). All steps are well explain in the book but I was not concentrating enough. Yes, one down....</p>
http://stackoverflow.com/questions/1651718/set-body-id-to-current-file-name-in-net0set body id to current file name in .netBen4Himv2009-10-30T19:03:20Z2009-11-23T01:55:53Z
<p>I am not a .Net guy but trying to get update an existing .net site. Trying to set up a unique id for the body tag even though I am using a master page.</p>
<p><code><body id="<% page_name %>"> </code></p>
<p>Obviously the above example doesn't work but not quite sure if there is a function that returns the file name that can be easily added to the masterpage so it give each page's body tag a unique "id" based on the page name.</p>
<p>I would perfer not having to set some variable up on each code behind page but just once on the master page. </p>
<p>Could be going about this the completely wrong way. Using PHP I have done this a number of times. </p>
<p>Basically I am trying to get a unique body id for each of the pages of the site. This will allow me to use CSS to style page specific layout items. </p>
http://stackoverflow.com/questions/1749730/renderpartial-conditionally-on-masterpage-in-asp-net-mvc2Renderpartial conditionally on masterpage in asp.net mvcRippo2009-11-17T15:40:19Z2009-11-17T17:31:36Z
<p>Hi I have the following menus defined on my masterpage in a asp.net mvc web application</p>
<pre><code><%Html.RenderPartial("AdminMenu"); %>
<%Html.RenderPartial("ApproverMenu"); %>
<%Html.RenderPartial("EditorMenu"); %>
</code></pre>
<p>However I want to only display the right menu depending on the logged in users role. How do I achieve this?</p>
<p>I am starting to think that my strategy is incorrect so is there a better method for achieving the same thing?</p>
http://stackoverflow.com/questions/1709831/master-page-getting-could-not-load-type-error-when-publishing0Master Page getting Could Not Load Type error when publishingRyan2009-11-10T17:45:08Z2009-11-10T18:50:57Z
<p>Everything works find locally, but when I publish my asp.net application to a remote server I get the following error:</p>
<pre><code>Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'JournalPages.MasterMain'.
Source Error:
Line 1: <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Main.master.cs" Inherits="JournalPages.MasterMain" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Source File: /journalpages/Main.Master Line: 1
</code></pre>
<p>This happens on any page with a master page. I used Reflector to look at the assembly in the bin directory and the types are all there. Any ideas??</p>
http://stackoverflow.com/questions/1703242/programmatically-define-a-nested-masterpages-master-is-it-possible0Programmatically define a nested masterpage's master, Is it possible?Brad81182009-11-09T19:36:53Z2009-11-10T18:17:00Z
<p>Currently I have a site that is set up using a masterpage and a nested master page. The master page setups up the header and footer info. The nested masterpage is used once logged into the site. </p>
<p>The issue I have is that I want to programmatically load a different masterpage to define different header and foot info.</p>
<p>I <strong>don't think I can</strong> use the OnPreInit() in each content class to set a different masterpage. I don't think I can do this because each Content page uses the Nested Masterpage. </p>
<p>What I would like to do is programmatically set which masterpage is called in the NestedMaster.</p>
<p>Any ideas?
I saw <a href="http://www.sitepoint.com/blogs/2006/08/31/masterpages-hate-logic-throw-interfaces-at-them/" rel="nofollow">this blog</a> posted on another MasterPage question. Before trying this route I wanted to see if anyone else has experienced this.</p>
<p>Thanks </p>
<p>EDIT:
In the CS page:</p>
<pre><code>public class AdminBasePage : BasePage
{
protected override void SetMasterPageFile()
{
Page.Master.MasterPageFile = "~/PathToMaster/Site.Master";
}
}
</code></pre>
http://stackoverflow.com/questions/1708931/override-asp-net-webforms-masterpage-header-render-function-for-seo0Override ASP.NET WebForms MasterPage Header Render Function for SEOJeremy H2009-11-10T15:45:48Z2009-11-10T16:00:02Z
<p>Our ASP.NET WebForms MasterPage is making a muck of our meta data and title. If you go to <a href="http://beta.orcsweb.com" rel="nofollow">http://beta.orcsweb.com</a> you will notice our meta tags don't have line breaks and the proper formatting, and the title tag has added in line-breaks. Even though we setup our MasterPage file with the proper formatting ASP.NET makes a big mess of it.</p>
<p>Anyone have any ideas or links on how to override how ASP.NET renders this so I can make it have just the formatting I expect.</p>
<p>(I know, move to ASP.NET MVC--that is a future project and not an immediate option.)</p>
http://stackoverflow.com/questions/1674786/injecting-external-master-pages-into-shared-web-application-project0Injecting external master pages into shared web application projectluna2009-11-04T16:02:03Z2009-11-04T16:02:03Z
<p>Hola folks,</p>
<p>I'm trying to create a web application project that has generic ContentPlaceholders that can be layed out via configured external master pages but without any knowledge of the external master pages.</p>
<p>Has anyone setup a web application project that can be used by multiple solutions, where it does not have any dependencies to external projects but allows the consumers to set their own master page?</p>
<p>I started off setting each page MasterPageFile to "../MySite.master" so that the application could just be embedded within a subdirectory and use the parent master page (whatever it is, as long as it inherited from my MasterPageBase class) The problem is that the parent application can not be referenced since it is in another application. </p>
<p>Having each consumers master page file in my project is not feasible since they have their own set of libraries that they need to reference, so the solution file would become gigantic.</p>
<p>Can I use injection to do this? I'm kind of a newbie at DI/IoC, but can the consuming projects each create a new project with only their master (inherited from my MasterPageBase class, and implementing my IMasterPageBase interface) and then set their config file to use their assembly containing their master? Obviously they would need to reference my library that contains the base class & interface.</p>
http://stackoverflow.com/questions/1672822/view-control-name-concatenated-with-clientid-and-masterpage-control-name-in-asp-n1View Control name concatenated with ClientID and masterpage control name in ASP.NET MVCNagendra Baliga2009-11-04T10:13:21Z2009-11-04T10:26:17Z
<p>I am working with ASP.NET MVC application. </p>
<p>I have One master page having one contentplaceholder.
I have one view placed in the contentplaceholder of master page.
i have few textBoxes say "name", "age" , "email" in it.
I also have submit button in my master page.</p>
<p>when i click submit button , postback event will be called in the controller.</p>
<p>//POST<br>
public ActionResult Result(FormCollection Form)
{
}</p>
<p>Question is if i try to access the value of the text box "name" using
Form["name"]
it will give me null value.</p>
<p>Instead
Form["$ct100$contentplaceholder1$name"]
will give me the correct value.</p>
<p>can any one tell how to get the value using only "name" ?</p>
http://stackoverflow.com/questions/1661920/handle-the-button-onclick-event-in-masterpage-in-asp-net-mvc0Handle the button onclick event in masterpage in ASP.NET MVCNagendra Baliga2009-11-02T15:24:31Z2009-11-02T20:53:18Z
<p>I am working with master page in <a href="http://en.wikipedia.org/wiki/ASP.NET" rel="nofollow">ASP.NET</a> (3.5) <a href="http://en.wikipedia.org/wiki/ASP.NET%5FMVC%5FFramework" rel="nofollow">MVC Framework</a> (1.0).
I am having one master page and 4 MVC Views in my application.
I have placed these four views in the contentplaceholder of the master page.
I have a Previous Button, a Next Button and the Submit Button in the master page.</p>
<p>Now the question is:</p>
<p>How to navigate between the 4 views using Previous and Next buttons. I.e. how to handle the button click event in MVC master page?</p>
<p>How to retain the values entered in each of the views while navigation, till I submit the data from all the 4 Views?</p>
http://stackoverflow.com/questions/1645049/creating-a-visual-studios-2010-asp-net-application-without-a-masterpage1Creating a Visual Studios 2010 ASP.NET application without a MasterpageMWill2009-10-29T16:45:13Z2009-10-29T17:07:14Z
<p>I've spent a decent amount of time on the web and messing around in the settings and I haven't been able to find a way to create a project in VWD 2010 without a masterpage. Just removing the reference yields an error.</p>
<p>Anyone know where I can find some information on this? I'm creating a simple application that has no use for a masterpage.</p>
http://stackoverflow.com/questions/1523073/asp-net-mvc-pull-and-populate-masterpage-contents-from-database1ASP.NET MVC - pull and populate masterpage contents from database?Kenny Nguyen2009-10-06T00:31:19Z2009-10-29T14:20:19Z
<p>Hello all, how can I pull masterpage content from the database and pass that into the masterpage so that my Views inherits from it? This is an example:</p>
<p>Clients to the website will have a unique code, lets call it "TargetCode", for example, ABC123, ABC456, etc... This unique code will be entered in the querystring, for example: mysite.com/ABC123.</p>
<p>Each of those "TargetCode" will have a different CSS, name, address, phone number, (common to all pages, so these will be placed in the master page) and page contents (around 2-3 pages, lets call thse pages Index, Products, and MoreInfo).</p>
<p>So when I visit the website address,mysite.com/ABC123, first it will look into the database, check if the code exists, if yes, then it pull the Masterpage information (css, name, address, phone number) and use that for the masterpage. Then I will pull the page contents (Index, Products, and MoreInfo) for the other Actions, all these pages will be using the same masterpage content of course.</p>
<p>Thank you very much.</p>
http://stackoverflow.com/questions/1631896/masterpage-has-a-control-in-it-and-the-controls-onclick-comes-back-as-method-not0MasterPage has a control in it, and the controls OnClick comes back as method not found in ASP.NETSLC2009-10-27T16:08:06Z2009-10-27T16:17:56Z
<p>I have a linkbutton in my masterpage:</p>
<pre><code><asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"></asp:LinkButton>
</code></pre>
<p>in my code behind</p>
<pre><code> protected void Transfer(object sender, EventArgs e)
{
// Codez
}
</code></pre>
<p>Says that no such method Transfer exists.</p>
<p>Any idea why or how to fix it?</p>
<p>MasterPage has no <%@ Blah %> on the very first line unlike my other pages, could this be the cause? I tried putting one in and specifying the codebehind but still not working.</p>
http://stackoverflow.com/questions/1620738/get-all-controls-from-masterpage-childpage0Get all controls from MasterPage ChildPageElimar2009-10-25T12:15:05Z2009-10-25T12:23:35Z
<p>Hi.
Is it possible to get all controls from a ChildPage from the MasterPage the child is nested in?</p>
<p>I need all the controls within my form tag, but when i use a MasterPage i cant see the controls from the ChildPage, only the ones in the MasterPage.</p>
<p>Anyone with a good solution on this one? :)</p>
http://stackoverflow.com/questions/1479061/simple-jquery-works-in-html-not-asp-net0Simple jQuery works in HTML, not ASP.NEThoytster2009-09-25T19:09:39Z2009-10-07T01:41:21Z
<p>jQuery noob here, trying to produce alternating row background colors. This works in HTML:</p>
<pre><code><script type="text/javascript">
$(document).ready(function() {
$('.stripedtable tr:even td').addClass(" evenrow");
alert("Just executed stripedtable jQuery in MasterPage");
});
</script>
</code></pre>
<p>The "evenrow" class is added to the 's class, for even rows only. Great!</p>
<p>Except when I put it into an ASP.NET MasterPage, the "evenrow" class is never added. In FireBug, I confirm that the function is being executed and jQuery is there. The <code>alert()</code> indicates that the method is firing after the page is loaded. No "evenrow" class, though, and not stripes.</p>
<p>It's probably relevant that the table that is NOT being altered as I'd like, is generated by a UserControl on a page that inherits from the MasterPage.</p>
<p>This is weird. When I go to View Source, copy the entire source to NoStripes.html, and open the HTML page in a browser, I get the "evenrow" class and the stripes. jQuery works fine.</p>
<p>This seems to imply that (somehow) the HTML is not really there, when the method fires from the MasterPage? So jQuery can't modify it?! And the HTML IS there, with NoStripes.html, because I saved the generated source?!</p>
<p>I tried putting the $('.stripedtable etc) on a content placeholder on the UserControl. The <code>alert()</code> shows it firing. No stripes.</p>
<p>Suggestions? I've googled at length without finding a solution. It's probably something simple, but I can't figure it out.</p>
<p>TIA - Hoytster</p>
http://stackoverflow.com/questions/1523900/master-search-textbox-validated-on-click-of-content-page-button0Master Search Textbox validated on click of Content page ButtonDeepak2009-10-06T06:25:33Z2009-10-06T06:25:33Z
<p>I have a Master Page which is having one TextBox and one button to Search. I have a form page which is having one or more Textbox with Required Field validation.</p>
<p>The problem is while clicking the content page button it is validating the Master page Textbox which I don't want. It should validate the content pages controls.</p>
<p>I am not getting why this problem is happening</p>
http://stackoverflow.com/questions/1506408/relative-path-in-master-page-for-img-tag0Relative Path in master page for img tagMehdi Dehghani2009-10-01T20:53:08Z2009-10-01T20:55:56Z
<p>I have a tag in a master page.
I use this master page in many folders. So the src path of the tag should be different for each folder.
Here is my code :</p>
<pre><code><img src="images/1.gif" />
</code></pre>
<p>and I have a folder named "images" and a folder named "Users".
Master Page is in the root, but I use it in Users folder.</p>
<p>How can I set a dynamic address for src?</p>
http://stackoverflow.com/questions/1472176/proper-way-to-hide-place-holders-in-a-sharepoint-2007-master-page0Proper way to hide place holders in a SharePoint 2007 Master Page?Mike Arsenault2009-09-24T14:43:24Z2009-09-25T14:38:11Z
<p>I am working on a specialized instance of MOSS for a client where What I am wanting to do is hide elements on the master page. In particular, I want to hide the main top navigation bar, the search functionality and the label that shows up in the upper-left-hand corner that tells you the name of the site you are on. So I made a copy of the default.master, and then in SP Designer I set the visible attributes for the placeholders for these blocks to “false” in the new master file. </p>
<p>I can then assign the master to my normal site collection no problems and it seems to been working like I want it to. But when I go to look at the system pages (i.e. any of the forms or backend stuff), it is still using the old default master. And when I tried to set the System Master Page to my customized master file, my MOSS instance threw a File Not Found error. Then certain parts of the admin area just started failing in that same way (i.e. I would try to go into Site Settings -> Content and Structure and it also would throw a File Not Found error) Then at one point, the whole Site Collection would throw “Unknown Error” and there didn't seem to be a way to recover, short of reverting the state of the VM I am running MOSS in for development purposes.</p>
<p>So I am curious, what is the best way to create a custom master page and then hide elements on that page? I realized that my web cluster didn’t have the proper flag set up to actually show me real ASP error messages, so I am going to change that tonight when I get home and see what SP is really telling me about all of this. I have also read that changing the application.master file is not recommended, but I figured I could get away with making a custom page for the Site and System master pages and not worry about application.master. I have been reading a bunch of Heather Solomon articles as well as various other things. They all basically say that it’s ok to hide elements on a master page, but not delete them outright as SP will break if you do that. Would it be advisable to use a JS/CSS hack to manually hide elements that way, rather than actually making a new master page?</p>
http://stackoverflow.com/questions/1453756/how-to-call-a-method-of-an-user-control-from-a-page-in-asp-net-2-00How to call a method of an user control from a page in asp.net 2.0 ?Himadri2009-09-21T10:06:42Z2009-09-21T20:33:13Z
<p>Hi all,
I have a usercontrol used in a masterpage.
I have added a page with the masterpage.</p>
<p>Now I need to call a method of the user control from the page.
How to do this? Please help.</p>
http://stackoverflow.com/questions/1446308/asp-net-user-control-on-a-master-page-renders-behind-my-main-content-when-viewed0ASP.NET User control on a master page renders behind my main content when viewed in IE7fr0man2009-09-18T18:55:42Z2009-09-18T19:10:38Z
<p>So I have a user control in my master page. When it's viewed in IE7 (or IE8 Compatibility mode), it renders behind the page content from the ContentPlaceHolders. I've tried manually setting the z-index of every element in sight, and none of it will put the control in front. Has anyone else encountered this? It works in Chrome, Firefox, Safari, and IE8 no-compatibility. </p>
<p>I've also changed my doctype in my master page to the following, as has been suggested elsewhere, but it's no use. </p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</code></pre>
<p>From the master page:</p>
<pre><code><%@ Register Src="controls/UserInfo.ascx" TagName="UserInfo" TagPrefix="uc1" %>
<div class="head-links">
<uc1:UserInfo ID="UserInfo1" runat="server" />
</div>
</code></pre>
<p>From the User Control:</p>
<pre><code> <asp:Panel ID="pnlPopup" runat="server" CssClass="modalPopup" Width="233px" style="z-index: 1000" >
<p>Are you sure? Your current shopping cart is valid only for the current Dealer ID. Switching Dealer IDs will reset your cart according to the new Dealer ID chosen.</p>
<br />
<div align="center" style="z-index:99">
<asp:Button ID="OkButton" runat="server" Text="Ok" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel" />
</div>
</asp:Panel>
</code></pre>
<p>And the CSS:</p>
<pre><code>.modalPopup {
background-color:white;
border-width:1px;
border-style:solid;
border-color:Gray;
padding:3px;
width:250px;
}
.head-links
{
position: absolute;
top: 0px;
right: 70px;
text-align: left;
width: 170px;
}
.head-links a
{
color: #fff;
text-decoration: underline;
}
.head-links a:hover
{
color: #fff;
text-decoration: none;
}
</code></pre>
http://stackoverflow.com/questions/1425798/masterpage-and-viewstate-vb-net0MasterPage and ViewState (VB.Net)moonblade2009-09-15T08:02:41Z2009-09-15T08:07:38Z
<p>Ok So i have written methods to override the LoadPageStateFromPersistenceMedium and SavePageStateToPersistenceMedium methods. now the problem is that i am using a masterpage, so how do i maintain using my masterpage and still inherit from System.Web.UI.Page?</p>
<p>Please bear in mind that the .vb Code behind the masterpage already inherits System.Web.UI.MasterPage. Anybody know how i can "properly" override these methods in a MasterPage?</p>