hot questions tagged masterpage+asp.net - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T08:56:48Zhttp://stackoverflow.com/feeds/tag?tagnames=masterpage%2basp.net&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/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/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/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/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/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/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/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/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/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/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/1368897/jquery-tabs-with-masterpage-space-between-tabs-and-tab-content0jQuery Tabs with Masterpage - space between tabs and tab contentFashionHouseJewelry.com2009-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>