14
votes
8answers
903 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 …
6
votes
3answers
392 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 …
6
votes
5answers
242 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 …
6
votes
3answers
922 views
How to create a strongly typed master page using a base controller in ASP.Net MVC
Hello. 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 …
6
votes
3answers
3k 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 …
6
votes
8answers
1k 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? …
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 …
4
votes
1answer
895 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 …
4
votes
3answers
356 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" />
…
4
votes
4answers
616 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, …
4
votes
1answer
507 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 ... …
4
votes
4answers
366 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 …
4
votes
3answers
2k 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?
4
votes
8answers
3k 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. …
