4
votes
6answers
2k views
Html.RenderPartial call from masterpage
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 …
0
votes
0answers
2 views
MOSS 2007: Changing the masterpage for one page layout
In a MOSS server, I would like a specific page layout to use the selected masterpage. Instead, i want this specific page layout to use a blank master page so i can use that page layout for pop …
0
votes
2answers
72 views
Cache Master Page in ASP.NET
How can I cache the master page in ASP.NET?
0
votes
2answers
1k views
scriptmanager in masterpage and updatepanel in usercontrol. Partial postback not happening
hi, i have a master page with following scriptmanager tag:
<asp:ScriptManager ID="scriptManger" EnablePartialRendering="true" runat="server" >
<Scripts>
<asp:ScriptReference …
2
votes
5answers
708 views
Page losing title after UpdatePanel asyncpostback
I have just noticed recently that my page title will reset to the standard "Untitled Page" after I perform an asyncpostback from inside my UpdatePanel in the main page. The title will not be lost …
0
votes
1answer
31 views
how to add controls to the masterpage’s content placeholder programmatically
On the base.master:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Base.master.cs" Inherits="WebApplicationControlTest.Base" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 …
0
votes
3answers
43 views
how to setup masterpage programmatically?
the function
private void SetUpMasterPage(){
this.MasterPageFile = "~/MasterPages/NestedMasterPageTest2.Master";
}
is called on the OnPreInit... This works when the masterpagefile is the base …
0
votes
2answers
29 views
Javascript pageLoad not executing in a master page
What causes the following pageLoad to not execute in a master page? The first alert executes as expected, but the pageLoad function is not being invoked. How can I use the function within a …
0
votes
4answers
417 views
Temporarily override Theme CSS in ASP.NET
I have a MasterPage that is two column layout, left column menu, right column content. The whole page is XHTML/Divs/CSS layout. So the columns are div's with CSS applied to size them.
For one page, …
1
vote
1answer
20 views
StartingNodeUrl - Is it possible to use a Method to set it’s value programmatically?
From my Content MasterPage I want get the StartingNodeUrl and programmatically set it:
Example of what I'm trying to do:
<'asp:SiteMapDataSource ID="SiteMapDataSource1" StartingNodeUrl="<%= …
0
votes
1answer
282 views
Refresh problem when treeview node changed
I have a Treeview in a masterpage and a products page in child page.
When i click treeview node i want to bind data to a gridview on the product page.
protected void …
5
votes
2answers
1k views
Proper way to use JQuery when using MasterPages in ASP.NET?
I have no issues when doing using JQuery in a aspx page without a masterpage, but when I try to use it in pages that have a masterpage, it doesn't work, so I end up putting the jquery files and other …
5
votes
8answers
5k views
How to use JQuery with Master Pages?
I can get simple examples to work fine as long as there's no master page involved. All I want to do is click a button and have it say "hello world" with the javascript in a .js file, using a master …
1
vote
2answers
38 views
Ninject and Master Page injection
First off, I'm using Ninject 2.0
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 …
0
votes
1answer
73 views
[ASP.NET MVC] What would cause a partial view to suddenly not be found?
I'm baffled. My site randomly throws the following error:
System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> …
