Tagged Questions

a feature of ASP.NET that allows template-based page development.

learn more… | top users | synonyms

19
votes
6answers
12k views

ASP.NET Custom 404 Returning 200 OK Instead of 404 Not Found

After trying to setup my site for Google Webmaster Tools I found that my Custom ASP.NET 404 page was not returning the 404 status code. It displayed the correct custom page and told the browser that ...
18
votes
11answers
31k 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 ...
16
votes
3answers
5k views

active menu item - asp.net mvc3 master page

I've been scanning around trying to find an appropriate solution for assigning "active/current" class to menu items from the master page. The line is split down the middle with regards of whether to ...
16
votes
1answer
6k views

ASP.NET MVC - Set ViewData for masterpage in base controller

I'm using a masterpage in my ASP.NET MVC project. This masterpage expects some ViewData to be present, which displays this on every page. If I don't set this ViewData key in my controllers, I get an ...
16
votes
4answers
3k views

Is it possible to share a masterpage between MVC and webforms?

I am adding MVC to a project that has MANY legacy webform pages. This works fine. However, I currently have a separate masterpage for MVC and for the webforms. The two master pages produce ...
16
votes
3answers
12k views

ASP.NET MVC Master Pages

What's the difference between the ASP.NET Master Page, and the MVC Master Page? And the AJAX Master Page for that matter?
15
votes
3answers
5k views

How to create a strongly typed master page using a base controller in ASP.NET MVC

Following the NerdDinners example, I am interested in creating a strongly typed Master Page. In order to achieve this, I use a base controller which retrieves the data for the master page. All other ...
15
votes
8answers
1k views

I'm new to .NET - what should I concentrate on and what should I ignore?

So, I've had a fair amount of experience programming database driven web apps using php and coldfusion (not together, at different times) and I'm starting to look into the asp.net world (I have a ...
14
votes
3answers
16k 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 ...
12
votes
8answers
4k views

What is the best way to share MasterPages across projects

Suppose you have two seperate ASP.NET Web Application projects that both need to use a common MasterPage. What's the best way to share the MasterPage across projects without having to duplicate code? ...
11
votes
4answers
420 views

How do I progressively render a header before content in ASP.NET master pages?

I have a large slow ASP.net site that uses master pages. I've identified that the user will have a better experience if they can see the header and navigation while the rest of the page is being ...
11
votes
7answers
28k views

Master Page Weirdness - “Content controls have to be top-level controls in a content page or a nested master page that references a master page.”

This is weird. I added a brand new Web Application project to my solution in Visual Studio 2008. Created a master page. Made zero modifications. Created a new webform. Set its masterpage to the ...
10
votes
1answer
2k views

ASP.NET MVC - different models for master page and view page

I have a strongly typed master page, but I want to use a different type for some of it's child pages. For example, on the master page... <%@ Master ... ...
10
votes
11answers
10k views

ASP.NET MVC - View with master page, how to set title?

What is prefered way of setting html title (in head) for view when using master pages? One way is by using Page.Title in .aspx file, but that requires in master page which can mess with HTML code. ...
9
votes
4answers
5k views

MVC 3: How to render a view without its layout page?

I am learning about Progressive Enhancement and I have a question about AJAXifying views. In my MVC 3 project I have a layout page, a viewstart page, and two plain views. The viewstart page is in the ...
9
votes
3answers
1k views

ASP.Net Change MasterPage Programatically

I have the following code in my ASPX side: <%@ Page Language="C#" MasterPageFile="~/masterpages/standard.Master" .... %> <%@ MasterType VirtualPath="~/masterpages/standard.Master" %> I ...
9
votes
2answers
6k views

jquery: find element whose id has a particular pattern

I am trying to find a span element who has an id in a particular pattern. Its main use is to find certain elements rendered by an asp.net (aspx) page which is derived from a master page.
9
votes
2answers
3k views

Are there nested master pages in ASP.NET MVC?

I wanted to know if the MVC framework can leverage the Nested Master Page? If so does anyone have some info on how to achive this?
9
votes
4answers
5k views

Hook a javascript event to page load

I have an aspx that has the following javascript function being ran during the onload event of the body. <body onload="startClock();"> However, I'm setting the aspx up to use a master page, ...
9
votes
4answers
3k 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 ...
8
votes
2answers
2k views

ASP.Net MVC - Referencing stylesheets in the master page

I have a master page that is in /Views/Shared. The master page references a stylesheet in the /Content folder. Everything works fine if I reference the stylesheet using "../../Content/style.css". ...
8
votes
5answers
6k views

Ajax Script Manager and Master Pages

I'm building a new website and want to use Ajax controls. Do I need to put a ScriptManager control on both the MasterPage and on each content page? or Just on the MasterPage?(or just on the content ...
8
votes
2answers
4k views

How to pass page's meta tags in ASP.NET MVC?

I'm playing with ASP.NET MVC for the last few days and was able to build a small site. Everything works great. Now, I need to pass the page's META tags (title, description, keywords, etc.) via the ...
8
votes
7answers
9k 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 ...
7
votes
3answers
176 views

use web form master page as master page for ASP.Net MVC views programatically

We have a running solution contains many web forms application with the same master page, we created a class library project for master page and its controls and reference it as a dll inside each web ...
7
votes
2answers
9k views

Open source Asp.Net Master page Templates

Where can I download Open source Asp.Net Master page Templates?
7
votes
2answers
2k views

Combine ASP.Net MVC with WebForms

Would it be possible to create a MVC root application (Portal with masterpages and themes) and add a couple of WebForms based subprojects (we already have an existing WebForms application that we ...
7
votes
5answers
322 views

assigning ViewData to nested masterpages

Is there a good way to assign ViewData to nested master pages? For example, in my top level masterpage I might have info on the logged in user. I also have a nested masterpage that is displayed when ...
7
votes
11answers
18k views

Form Elements in ASP.NET Master Pages and Content Pages

OK, another road bump in my current project. I have never had form elements in both my master and content pages, I tend to have all the forms in the content where relevant. In the current project ...
7
votes
7answers
4k views

Force browser to use new CSS

Is there a way to check if the user has a different version of the CSS cached by their browser and if so force their browser to pull the new version?
6
votes
9answers
558 views

Recommendations for good ways to display user messages in asp.net?

I have an app full of pages and user controls, many of which have one or more label controls on them for displaying various different messages to the user. Example: the AddCompany.ascx user control, ...
6
votes
2answers
590 views

Is there some sort of Master Page functionality in Ruby on Rails?

I've been a .Net developer for the past seven years or so, and been working with ASP.Net for the last couple of years. I'm now using Ruby on Rails for some projects, and I'm wanting to know if there ...
6
votes
2answers
5k views

How should I integrate session state into an ASP.NET MVC application?

I'm looking for thoughts on how should I use Session in an ASP.NET MVC application? Especially when using masterpages and tryin to just get the data to the masterpage without bypassing the controller. ...
6
votes
5answers
5k views

Setting an ASP.NET Master Page at runtime

I'm working on a site which needs to be able to support two or more looks, changable at runtime. I'd hoped to be able to handle the change with a CSS switch, but it looks like I'll need to use a ...
5
votes
2answers
242 views

How to use a method in a Master Page from a Content Page

I am writing an ASP.NET 4 application with C#. I have a Master Page, inside of which I have the following method: public void DisplayMessage(string input) { Label myMessageDisplayer = ...
5
votes
2answers
183 views

How do you assign a specific NAME to a tag when using master pages?

I am using Master Pages and I am truing to dynamically add hidden text boxes on the form with the NAMEs that Google Checkout expects. <input name="item_name_1" type="hidden" value="Widget #1"/> ...
5
votes
4answers
570 views

How to Determine duplicate Javascript Functions which include in Asp.net Page

I have an application which use some javascript functions, As all javascripts include in Masterpage, most of them which comes withpage are not necessary, and some of those are repeated ( cause used ...
5
votes
4answers
220 views

Choose Header in ASP.NET Page

I have created a master page (Site.master) which contains the code to display a header, a footer, and a side bar. It works really great, but I am having trouble figuring out how to dynamically choose ...
5
votes
1answer
399 views

Why is @MasterType directive not implied when setting @Page masterPageFIle?

The docs for @MasterType have this example. <%@ Page masterPageFile="~/MasterPage.master"%> <%@ MasterType virtualPath="~/MasterPage.master"%> Why is @MasterType even needed? ...
5
votes
4answers
427 views

Dynamically Create ASP.NET Content Pages

Is it possible with ASP.NET Master Pages to create content pages dynamically? That is, I know we can create content dynamically, but the content pages themselves, can those be created ...
5
votes
8answers
2k views

CSS and images on Master Page

I have this quite popular problem, but have failed to find a solution that works. Basicly, I am using a Master Page (/Masterpages/Default.master), that includes <link href="../css/style.css" ...
5
votes
2answers
792 views

Multiple master pages in a single application

Is it a good design to have multiple masterpages in an application. I am building a website using Asp.net MVC with different type of users like, admin, employee, general user, etc And every user once ...
5
votes
2answers
2k views

Using JQuery in a Subfolder When the MasterPage is in the Root Folder

I am trying to use the jquery library in ASP.NET in a subfolder called "samples" with a masterpage that is located in the root directory. Presently the references to the jquery scripts are located in ...
5
votes
3answers
1k views

Issue with asp:ContentPlaceHolder and code blocks

When a content placeholder contains any code blocks it reports that the control collection is empty. For instance: MasterPage.aspx <asp:ContentPlaceHolder ID="Content1" runat="server" /> ...
5
votes
6answers
5k views

Finding controls inside nested master pages

I have a master page which is nested 2 levels. It has a master page, and that master page has a master page. When I stick controls in a ContentPlaceHolder with the name "bcr" - I have to find the ...
5
votes
4answers
770 views

Does ColdFusion have an answer to ASP.NET's Master Pages?

I'm working on a website that was coded in ColdFusion. I have a CSS/HTML template I would like to apply to the content of every page, without duplicating any more code than necessary. I've gotten kind ...
5
votes
6answers
5k views

passing viewdata to asp.net mvc masterpages

I'm trying to pass ViewData to my asp.net mvc masterpage for an mvc usercontrol that I keep on a masterpage. For example, I created a dropdownlist of names as an mvc usercontrol and I put that in my ...
5
votes
4answers
2k views

Can I change a nested master page's master dynamically?

Okay, so we all know about changing a master page dynamically in a page's OnPreInit event. But what about a nested master page? Can I change a master's master? There is no OnPreInit event exposed in ...
5
votes
3answers
2k views

How to reference a Master Page from a user control?

I'm looking for a way to (preferably) strongly type a master page from a user control which is found in a content page that uses the master page. Sadly, you can't use this in a user control: <%@ ...
5
votes
3answers
2k views

Preferred way to include relative reference to JavaScript in VS 2008 nested Masterpage

Our base Masterpage has something like the following <head runat="server"> <title></title> <script type="text/javascript" src="<%= ...

1 2 3 4 5 23