active questions tagged masterpage - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T19:40:51Zhttp://stackoverflow.com/feeds/tag/masterpagehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/1651718/set-body-id-to-current-file-name-in-net0set body id to current file name in .netBen4Himv2009-10-30T19:03:20Z2009-10-30T20:38: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/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>
http://stackoverflow.com/questions/1402241/forms-authentication-and-sharepoint-profilepropertyloader0Forms Authentication and SharePoint ProfilePropertyLoaderScott Jones2009-09-09T21:37:02Z2009-09-10T08:45:08Z
<p>I am trying to use the ProfilePropertyLoader to display a welcome message in this format:</p>
<pre><code><SPSWC:ProfilePropertyLoader runat="server"/>
Welcome,
<SPSWC:ProfilePropertyValue PropertyName="FirstName" ApplyFormatting="false" runat="server"/>
<SPSWC:ProfilePropertyValue PropertyName="LastName" ApplyFormatting="false" runat="server"/>!
</code></pre>
<p>which I have in my master page.</p>
<p>The site that uses both windows authentication and forms authentication. This works fine when logging in via the windows auth site, but when I attempt it using forms authentication I get an Access Denied error while logging into the site.</p>
<p>I even tried setting permissions of a user to full control in sharepoint but still no luck. It seems to be denying forms users (simple auth against the aspnetdb database in sql server) access to those controls. </p>
<p>Anyone have any ideas?</p>
http://stackoverflow.com/questions/1400265/override-form-name-of-masterpage-vb-net1override form name of masterpage vb.netluvPlsQL2009-09-09T14:59:24Z2009-09-09T18:05:55Z
<p>It seems like I can't set the id or name of the form in my masterpage. [it's always "aspnetForm"]</p>
<p>Is there a way to override the uniqueID property of form?</p>
<p>I tried to create a class and inherit from htmlform, but then i can't register it on my mastrepage, [unknown server tag ... ]</p>
<p>im registering it like this </p>
<pre><code><%@ Register TagPrefix="cf" Namespace="Framework.BaseForm" %>
</code></pre>
http://stackoverflow.com/questions/1398853/how-to-design-a-masterpage-for-a-website-is-there-any-template0How to design a masterpage for a website? Is there any template?odiseh2009-09-09T10:35:37Z2009-09-09T10:39:35Z
<p>HI</p>
<p>I am going to create a website, So I need to have a master page for all my own pages.</p>
<p>But its difficult to design it from scratch, Is there any template I use and just changing
for example the colors, font sizes, ...?</p>
http://stackoverflow.com/questions/1379681/define-derived-class-in-masterpage-c1Define derived class in Masterpage (c#)maxp2009-09-04T14:38:03Z2009-09-04T14:44:21Z
<p>All of the web forms / pages that my project extend on a derived class for the default page class.</p>
<p>I.e. instead of </p>
<p><code>public partial class myfirstpage:System.web.ui.page
{}</code> </p>
<p>i have <code>public partial class myfirstpage:myderivedclass
{}</code> </p>
<p>However in the codebehind of the masterpage, if i do '<code>this.page</code>' it assumes im still using system.web.ui.page.</p>
<p>Anyone know how i can change this my new derived class instead?</p>
http://stackoverflow.com/questions/1368897/jquery-tabs-with-masterpage-space-between-tabs-and-tab-content0jQuery Tabs with Masterpage - space between tabs and tab contentRon McDonald2009-09-02T16:51:29Z2009-09-02T21:17:43Z
<p>I'm trying use jQueryUI tabs in a content control. The code below works on a page that doesn't use a MasterPage. When I use it in a content control there is a large gray space between the tabs and the content in them. How do I get rid of this?</p>
<p>I'm using jquery calendars and accordions with no problems in the content pages. </p>
<p>There is a screen shot at this link <strong>[<a href="http://imgur.com/qGQjK.png%5D%5B1%5D" rel="nofollow">http://imgur.com/qGQjK.png%5D%5B1%5D</a></strong></p>
<pre><code><asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
<div class="demo">
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
<li><a href="#tabs-3">Aenean lacinia</a></li>
</ul>
<div id="tabs-1">
<p>This is tab 1 content</p>
</div>
<div id="tabs-2">
<p>Tab 2 </p>
</div>
<div id="tabs-3">
<p>tab 3</p>
</div>
</div>
</div>
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>
</asp:Content>
</code></pre>
<p>![alt text][1]</p>
<p>[1]: <img src="http://imgur.com/qGQjK.png" alt="Hosted by imgur.com" /></p>
<p>Here's how it looks in the same project without a masterpage - it doesn't have all that extra space.</p>
<p>![alt text][1]</p>
<p>[1]: <img src="http://imgur.com/NpICt.png" alt="Hosted by imgur.com" /></p>
<p>here's the part of the jquery stylesheet that formats the tabs</p>
<pre><code>.ui-tabs { padding: .2em; zoom: 1; }
.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
</code></pre>
http://stackoverflow.com/questions/1313009/jquery-fadeto-effect-applied-to-tr0jQuery fadeTo effect applied to <tr>Jagd2009-08-21T16:42:29Z2009-08-21T18:17:23Z
<p>I want to add the fadeTo effect to a tr tag using jQuery. This should be possible, right? Here's my code:</p>
<pre><code>if ($) {
$(document).ready(function() {
$("tr[id$='_trPendingRequest_Manager']").fadeTo("slow", 0.33);
});
}
</code></pre>
<p>For whatever reason, the effect is not happening. </p>
<p>I decided to do a bit more testing and added a paragraph tag directly above the table containing this tr, and I was able to successfully apply the fadeTo effect to the paragraph tag. So, this leads me to think that one cannot apply the fadeTo effect to tr tags.</p>
<p>Anyone have a nugget of wisdom they'd not mind sharing with me as to why I can't get this to work?</p>
<p>EDIT:
Here's the html of the table with the tr which I am trying to apply the effect to.</p>
<pre><code><table>
<tr id="trPendingRequest_Manager" runat="server" style="display: none;" valign="middle">
<td valign="middle">
<asp:Image id="imgExc" runat="server" ImageUrl="~/Images/Mail_24x24.png" />
</td>
<td>&nbsp;</td>
<td valign="middle">
<asp:HyperLink ID="hypPendingRequest" runat="server" NavigateUrl="~/MyManagedRequests.aspx" Font-Bold="true" Font-Size="Medium" Font-Underline="false" ForeColor="Black">You have <asp:Label ID="lblRequestsNum" runat="server"></asp:Label>request(s) pending your action
</asp:HyperLink>
</td>
</tr>
<tr>... Removing the rest for brevity ... </tr>
</table>
</code></pre>