1
vote
2answers
40 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
50 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: …
0
votes
2answers
37 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 logge …
0
votes
1answer
22 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 prope …
0
votes
0answers
13 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 knowledg …
1
vote
2answers
47 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 textB …
0
votes
1answer
78 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 contentplac …
0
votes
4answers
38 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_nam …
1
vote
1answer
53 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 re …
1
vote
2answers
88 views
ASP.NET MVC - pull and populate masterpage contents from database?
Hello all, how can I pull masterpage content from the database and pass that into the masterpage so that my Views inherits from it? This is an example:
Clients to the website will …
0
votes
1answer
19 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 T …
0
votes
2answers
33 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 …
0
votes
7answers
134 views
Simple jQuery works in HTML, not ASP.NET
jQuery noob here, trying to produce alternating row background colors. This works in HTML:
<script type="text/javascript">
$(document).ready(function() {
…
0
votes
0answers
21 views
Master Search Textbox validated on click of Content page Button
I have a Master Page which is having one TextBox and one button to Search. I have a form page which is having one or more Textbox with Required Field validation.
The problem is wh …
0
votes
2answers
135 views
Relative Path in master page for img tag
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 :
<img src="images/1.gi …
