active questions tagged masterpage+asp.net - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:02:11Z http://stackoverflow.com/feeds/tag/masterpage+asp.net http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930323/how-to-load-content-pages-async-using-jquery 0 How to load content pages async using jQuery? Rey 2009-12-18T19:48:54Z 2009-12-18T20:16:23Z <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>&lt;%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %&gt; &lt;%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;link href="styles/master.css" rel="stylesheet" type="text/css" /&gt; &lt;title&gt;Impeccable Construction Service&lt;/title&gt; &lt;asp:ContentPlaceHolder ID="head" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;cc1:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"&gt; &lt;Scripts&gt; &lt;asp:ScriptReference Path="~/scripts/jquery-1.3.2.js" /&gt; &lt;/Scripts&gt; &lt;/cc1:ToolkitScriptManager&gt; &lt;div id="main"&gt; &lt;div class="header"&gt; &lt;asp:Image ID="HeaderLogo" runat="server" ImageUrl="images/header-logo.png" /&gt; &lt;asp:Image ID="SubHeader" runat="server" ImageUrl="images/sub-header.png" /&gt; &lt;/div&gt; &lt;div class="navbar"&gt; &lt;asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" /&gt; &lt;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"&gt; &lt;StaticMenuItemStyle ItemSpacing="10" CssClass="staticMenuItemStyle" /&gt; &lt;StaticHoverStyle CssClass="staticHoverStyle" /&gt; &lt;StaticSelectedStyle CssClass="staticMenuItemSelectedStyle" /&gt; &lt;DynamicMenuItemStyle CssClass="dynamicMenuItemStyle" /&gt; &lt;DynamicHoverStyle CssClass="menuItemMouseOver" /&gt; &lt;DynamicMenuStyle CssClass="menuItem" /&gt; &lt;DynamicSelectedStyle CssClass="menuItemSelected" /&gt; &lt;DataBindings&gt; &lt;asp:MenuItemBinding DataMember="siteMapNode" NavigateUrlField="url" TextField="title" ToolTipField="description" /&gt; &lt;/DataBindings&gt; &lt;/asp:Menu&gt; &lt;asp:SiteMapPath ID="SiteMapPath1" runat="server" RenderCurrentNodeAsLink="true" PathSeparator=" &gt;&gt; " CssClass="currentNodeStyle"&gt; &lt;PathSeparatorStyle ForeColor="#5D7B9D" CssClass="currentNodeStyle" /&gt; &lt;CurrentNodeStyle ForeColor="#333333" CssClass="currentNodeStyle" /&gt; &lt;NodeStyle ForeColor="#7C6F57" CssClass="currentNodeStyle" /&gt; &lt;RootNodeStyle ForeColor="#5D7B9D" CssClass="currentNodeStyle" /&gt; &lt;/asp:SiteMapPath&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/div&gt; &lt;div class="footer"&gt; &lt;h4&gt; Rivera Design Studio &lt;/h4&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1909159/early-response-termination-when-using-an-asp-net-master-page 0 Early response termination when using an ASP.NET Master Page Jack Hayter 2009-12-15T17:48:31Z 2009-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-possible 0 Masterpage, Intelligencia url rewrite and updatepanel = possible ? Mark 2009-12-11T16:58:31Z 2009-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-page 0 how can i insert login control on the top of default page sumit 2009-12-11T04:04:26Z 2009-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-behind 1 how to display none through code behind sumit 2009-12-10T16:09:51Z 2009-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>&lt;div id="login_div" runat="server"&gt; </code></pre> http://stackoverflow.com/questions/1827154/state-in-asp-net-master-page 0 State in ASP.net Master Page Shiraz Bhaiji 2009-12-01T16:03:37Z 2009-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-go 3 Are master pages the way to go? Velika 2009-11-25T20:55:52Z 2009-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-publishing 0 Master Page getting Could Not Load Type error when publishing Ryan 2009-11-10T17:45:08Z 2009-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: &lt;%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Main.master.cs" Inherits="JournalPages.MasterMain" %&gt; Line 2: Line 3: &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; 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-possible 0 Programmatically define a nested masterpage's master, Is it possible? Brad8118 2009-11-09T19:36:53Z 2009-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-seo 0 Override ASP.NET WebForms MasterPage Header Render Function for SEO Jeremy H 2009-11-10T15:45:48Z 2009-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-masterpage 1 Creating a Visual Studios 2010 ASP.NET application without a Masterpage MWill 2009-10-29T16:45:13Z 2009-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/1631896/masterpage-has-a-control-in-it-and-the-controls-onclick-comes-back-as-method-not 0 MasterPage has a control in it, and the controls OnClick comes back as method not found in ASP.NET SLC 2009-10-27T16:08:06Z 2009-10-27T16:17:56Z <p>I have a linkbutton in my masterpage:</p> <pre><code>&lt;asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"&gt;&lt;/asp:LinkButton&gt; </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 &lt;%@ 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-childpage 0 Get all controls from MasterPage ChildPage Elimar 2009-10-25T12:15:05Z 2009-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/1506408/relative-path-in-master-page-for-img-tag 0 Relative Path in master page for img tag Mehdi Dehghani 2009-10-01T20:53:08Z 2009-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>&lt;img src="images/1.gif" /&gt; </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/1453756/how-to-call-a-method-of-an-user-control-from-a-page-in-asp-net-2-0 0 How to call a method of an user control from a page in asp.net 2.0 ? Himadri 2009-09-21T10:06:42Z 2009-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-viewed 0 ASP.NET User control on a master page renders behind my main content when viewed in IE7 fr0man 2009-09-18T18:55:42Z 2009-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>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; </code></pre> <p>From the master page:</p> <pre><code>&lt;%@ Register Src="controls/UserInfo.ascx" TagName="UserInfo" TagPrefix="uc1" %&gt; &lt;div class="head-links"&gt; &lt;uc1:UserInfo ID="UserInfo1" runat="server" /&gt; &lt;/div&gt; </code></pre> <p>From the User Control:</p> <pre><code> &lt;asp:Panel ID="pnlPopup" runat="server" CssClass="modalPopup" Width="233px" style="z-index: 1000" &gt; &lt;p&gt;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.&lt;/p&gt; &lt;br /&gt; &lt;div align="center" style="z-index:99"&gt; &lt;asp:Button ID="OkButton" runat="server" Text="Ok" /&gt; &lt;asp:Button ID="CancelButton" runat="server" Text="Cancel" /&gt; &lt;/div&gt; &lt;/asp:Panel&gt; </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-content 0 jQuery Tabs with Masterpage - space between tabs and tab content FashionHouseJewelry.com 2009-09-02T16:51:29Z 2009-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>&lt;asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server"&gt; &lt;div class="demo"&gt; &lt;div id="tabs"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#tabs-1"&gt;Nunc tincidunt&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#tabs-2"&gt;Proin dolor&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#tabs-3"&gt;Aenean lacinia&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div id="tabs-1"&gt; &lt;p&gt;This is tab 1 content&lt;/p&gt; &lt;/div&gt; &lt;div id="tabs-2"&gt; &lt;p&gt;Tab 2 &lt;/p&gt; &lt;/div&gt; &lt;div id="tabs-3"&gt; &lt;p&gt;tab 3&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; $(function() { $("#tabs").tabs(); }); &lt;/script&gt; &lt;/asp:Content&gt; </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>