0
votes
2answers
45 views
State in ASP.net Master Page
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.
I was wondering: If we store data in a property on the …
0
votes
2answers
62 views
When is the MasterPageFile located in ASP.NET MVC WebForms ViewEngine
When is the MasterPageFile property of a view/page checked that it exists in ASP.NET MVC WebForms view engine?
What I want to do is have the following code not output the error:
Parser Error …
3
votes
4answers
92 views
Are master pages the way to go?
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 …
0
votes
3answers
47 views
~masterurl/default.master does not exist
Hello all,
I try to create a custom webpart page. I tried a book example that start with :
<%@ Page MasterPageFile="~masterurl/default.master"
…
1
vote
2answers
55 views
Renderpartial conditionally on masterpage in asp.net mvc
Hi I have the following menus defined on my masterpage in a asp.net mvc web application
<%Html.RenderPartial("AdminMenu"); %>
<%Html.RenderPartial("ApproverMenu"); %>
…
0
votes
3answers
70 views
Master Page getting Could Not Load Type error when publishing
Everything works find locally, but when I publish my asp.net application to a remote server I get the following error:
Server Error in '/' Application.
Parser Error
Description: An error occurred …
0
votes
1answer
31 views
Override ASP.NET WebForms MasterPage Header Render Function for SEO
Our ASP.NET WebForms MasterPage is making a muck of our meta data and title. If you go to http://beta.orcsweb.com you will notice our meta tags don't have line breaks and the proper formatting, and …
0
votes
1answer
41 views
Programmatically define a nested masterpage’s master, Is it possible?
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.
…
0
votes
0answers
17 views
Injecting external master pages into shared web application project
Hola folks,
I'm trying to create a web application project that has generic ContentPlaceholders that can be layed out via configured external master pages but without any knowledge of the external …
1
vote
2answers
70 views
View Control name concatenated with ClientID and masterpage control name in ASP.NET MVC
I am working with ASP.NET MVC application.
I have One master page having one contentplaceholder.
I have one view placed in the contentplaceholder of master page.
i have few textBoxes say "name", …
0
votes
1answer
116 views
Handle the button onclick event in masterpage in ASP.NET MVC
I am working with master page in ASP.NET (3.5) MVC Framework (1.0).
I am having one master page and 4 MVC Views in my application.
I have placed these four views in the contentplaceholder of the …
0
votes
5answers
49 views
set body id to current file name in .net
I am not a .Net guy but trying to get update an existing .net site. Trying to set up a unique id for the body tag even though I am using a master page.
<body id="<% page_name %>">
…
1
vote
1answer
57 views
Creating a Visual Studios 2010 ASP.NET application without a Masterpage
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 …
0
votes
1answer
20 views
MasterPage has a control in it, and the controls OnClick comes back as method not found in ASP.NET
I have a linkbutton in my masterpage:
<asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"></asp:LinkButton>
in my code behind
protected void Transfer(object …
0
votes
2answers
34 views
Get all controls from MasterPage ChildPage
Hi.
Is it possible to get all controls from a ChildPage from the MasterPage the child is nested in?
I need all the controls within my form tag, but when i use a MasterPage i cant see the controls …
