Tagged Questions
The contentplaceholder tag has no wiki summary.
4
votes
2answers
323 views
Nested MVC master pages
I'm, using MVC to develop a Web application, and I need to use nested MasterPages in my site, in order to share the Visual Components.
I have two Master Pages and a ContentPage:
Parent.master
...
4
votes
5answers
1k views
ContentPlaceHolders: Repeated Content
Scenario
I have an application using asp.net Master Pages in which I would like to repeat some content at the top and bottom of a page. Currently i use something like this:
Master Page
...
3
votes
1answer
2k views
ASP.NET - Update panel in Master page, refresh button in Content Page
I have Update panel in Master page:
<asp:ScriptManager id="CartScript" runat="server"></asp:ScriptManager>
<asp:UpdatePanel id="CartBox" runat="server" ...
3
votes
2answers
505 views
MVC: C#: display content of a contentPlaceholder twice
I'm writing an MVC C# application. I use a masterPage and have
the title and content of other pages put in contentPlaceholders, which are
displayed on the master page.
On the MasterPage, I want the ...
3
votes
2answers
1k views
ASP.NET MVC ContentPlaceHolder overriding hard-coded content
This is what I have in the aspx page:
<head runat="server">
<title>Website - <asp:ContentPlaceHolder ID="HeadContent" runat="server" /></title>
</head>
This is ...
3
votes
6answers
1k views
How to replace text in a PowerPoint (.ppt) document?
What solutions are there? I know only solutions for replacing Bookmarks in Word (.doc) files with Apache POI?
Are there also possibilities to change images, layouts, text-styles in .doc and .ppt ...
2
votes
1answer
166 views
Accessing Grandparent Content Placeholder in Master Pages
I've been searching the web and not finding any answers (there were a couple close questions on stack overflow but they didn't seem to get answered or be identical), so I thought I'd pose one of my ...
2
votes
1answer
172 views
The Controls collection cannot be modified because the control contains code blocks (i.e. <% … %>)
I am stuck with this error and found a work around and the solutions works for me, but i i would like to know is it the best way to fix the issue and i want to make sure that it wont affect any other ...
2
votes
5answers
1k views
Asp.Net Mvc - ContentPlaceHolder- Javascript
Depending on which page I am, I would like the content of a javascript function to change.
Example :
MasterPage
<script type="text/javascript">
Cufon.now();
...
2
votes
3answers
1k views
Use ContentPlaceHolder's default content instead of page's content
When a page that uses a master page doesn't have an asp:Content control for one of the master page's ContentPlaceHolders, the default content is shown instead. I want to use that default content on a ...
1
vote
2answers
43 views
how can a MVC view to populate a contentplaceholder in not direct ancestor Master
i have a Master page and in it another Master and another Master.
I want the view inside the third master to populate some contentPalceHolder in the upper-most Master.
How do I do it?
1
vote
3answers
90 views
asp.net: does master pages inheritance doesn't inherit placeholders?
Imagine you have two masterpages:
MasterPage "A":
PlaceHolder-A1
PlaceHolder-A2
MaterPage "B": (inherits from A)
Populates "PlaceHolder-A1"
I have to create ordinary aspx HTML page that inherits ...
1
vote
1answer
721 views
How to set focus on textbox in other ContentPlaceHolder? - MVC2
Greetings,
I've been scanning the internet on how to do this, but so far no luck. There are numerous solutions posted, especially on this website (thank you for that), but none seem to work for me. ...
1
vote
1answer
570 views
Determine ClientID of ContentPlaceHolder in current context when adding dynamic controls
I am creating a Table Control on-the-fly, which contains a series of Labels and Dropdowns for each row of the table which also includes some javascript on the labels and dropdowns.
Dim dd As ...
1
vote
2answers
2k views
Using iFrames In ASP.NET
I have an asp.net website with a master-page, can I use the iframe so my aspx pages will load inside the iframes. (Meaning it wont load the master-page)
Kinda like my iframe will be the ...
1
vote
2answers
205 views
ContentPlaceHolder is outside the table
I put a ContentPlaceHolder of my MasterPage in a table, and it shows outside the table.
Someone to help me ?
Thank you
<table class="four_tile_table" border="1" cellpadding="0" cellspacing="0" ...
1
vote
3answers
243 views
In the child page, I want to find master page's Content placeholder and add text to it. How do I make that possible?
I tried this much:-
protected void Page_PreInit(object sender, EventArgs e)
{
class1 obj = new class1();
DataTable dt = new DataTable();
dt = obj.get_text();
...
1
vote
1answer
182 views
ASP.NET MVC ContentPlaceHolders out of order?
I added a new ContentPlaceHolder (HeadContent) right below the Title so that I can add page-specific css and js files. But when I create a new View using the master page, it puts the default text of ...
1
vote
1answer
626 views
Why can't I override the default master page content in a SharePoint publishing page?
So I've setup a site collection using the Publishing Portal template and stubbed out a prototype site structure including three tiers. At the second tier I've created a Publishing site and developed ...
1
vote
3answers
497 views
Should I be able to understand this ContentPlaceHolder behavior?
My goal is to be able to define a class for the element in a child page. On my master page I have the following:
<body class="<myown:AttributePlaceHolder runat="server" ...
1
vote
1answer
1k views
Error when using link href inside my ContentPlaceHolder
I am using a MasterPage in my project...
This this the link i need to place inside my ContentPlaceHolder of my Dedault.aspx page
<link href="jquery/imagebox/imagebox.css" rel="stylesheet" />
...
0
votes
2answers
18 views
Can not get Request.Form.Get valus from aspx page that wrappe withe ContentPlaceHolder (form error)
I am writing a web app in asp.net I have a master page that contain a ContentPlaceHolder
and a form that wrapper the ContentPlaceHolder, In a aspx page I realize the ContentPlaceHolder and have some ...
0
votes
3answers
58 views
Failed to load viewstate - Content Place holder
My master page has a content place holder, and my page has 2 rad grids, within separate asp:panels.
On a dropdown selection, respective grid is loaded into the page.
I select grid 1 from dropdown
...
0
votes
0answers
42 views
ContentPlaceHolders and asp:TableCell
I am using MS VS 2010.
I have burried my ContentPlaceHolder on my MasterPage in an asp:TableCell.
My problem is, the designer mode shows my controls on the MasterPage, but any child pages of the ...
0
votes
7answers
97 views
How to retrive hidden field value using javascript?
I've asp.net web site , i used master page for the design. I've child page which is placed in the contentplaceholder.On the child page i used one hidden field as -
<input id="Hidden1" ...
0
votes
1answer
51 views
How to call javascript function on the page load event of the child page which is in contentplaceholder?
I've asp.net web site , i used master page for the design. I've many child pages which are placed in the contentplaceholder. I want to call the javascript function on the page load event of the child ...
0
votes
2answers
57 views
how to work with javascript function for asp.net checkbox control which is placed in contentplaceholder?
I have checkbox and textbox control from asp.net on the contentplaceholder. I want to call the javascript function for enabling the textbox control depending on the checked status of the checkbox. I ...
0
votes
2answers
46 views
how to retrive html control values which are placed in contentPlaceHolder in code behind file?
I've designed a web site , in that web site i used master page for my web page . And in that web page i've placed html controls which are in the content place holder. I want to retrieve values of the ...
0
votes
2answers
42 views
How do I put a placeholder twice on master page?
I have a master page and I want to add a placeholder twice - so that I have the same placeholder in two places of the master page so that actual page just specifies content of the placeholder once and ...
0
votes
2answers
107 views
Why is ContentPlaceHolder content not displaying under IE9?
I'm working on a small ASP.NET project and just hit a wall. In a middle of a project, I started to test the webpage on different browsers and detected that the content of the ContentPlaceHolder in ...
0
votes
3answers
146 views
Access Masterpage control on a basepage using FindControl
I have an ASP.NET website application on .NET 4.0. There is one Masterpage that contains the header and footer for all the aspx pages. The content comes from the individual aspx pages. I have ...
0
votes
1answer
73 views
how to programmatically decide which content page to load , on master page load
I have a master page and two content pages with the same ContentPlaceHolderID. Is there a way to specify which content page should be loaded from the Page_Load event of the master page?
If I watch ...
0
votes
1answer
69 views
Can a ContentPlaceHolder be placed in a Web User Control?
I want to do something like this:
I got this User Control called Base:
<div>
some content...
<asp:ContentPlaceHolder id="baseContentPlaceHolder" ...
0
votes
3answers
783 views
How to find user control of an ASP.NET page inside of event of another user control on that ASP.NET page EDIT: different content placeholders?
I have a ASP.NET page with 2 user controls registered. The first one has only one button in it. The second one is simple text and hidden on default. What I want is to make the second one visible when ...
0
votes
1answer
116 views
Which control add in Master Page to define region?
I am developing an ASP.NET Web application. I create a master page. The master page requires a region where i can add page-specific content by using the ASP.NET page designer. I need to add a control ...
0
votes
1answer
31 views
Contentplaceholders in masterpage resizes
being new to asp I seem to be stumbling into a problem.
I have a masterpage with a table and several buttons. So far , so good.
When i go to a different file that uses my masterpage my contentholder ...
0
votes
2answers
340 views
How to use ContentPlaceHolderId CMS (Umbraco)
I have a simple master template with HTML tags and I want to put a footer and header in it. For some reason it doesn't display both the header and footer at the same time. Am I using ...
0
votes
1answer
156 views
placeholder function
I have a table inside a placeholder. when i click a 'go' button the table becomes visible. However when i click on a radiobutton list with autopostback property set to true, the table within that ...
0
votes
0answers
352 views
Powerpoint 2007 - Possible to change placeholder to Title placeholder?
I've found after I've created several PowerPoint templates that I forgot to add the "Title" placeholder that you can find in Master View. Instead, I've added textbox placeholders instead, which works ...
0
votes
2answers
65 views
How to regenerate views after master page has changed?
I have added an another ContentPlaceHolder to Master Page for scripts. When I create Views new place holder is visible, but old views remain the same. Is there a way other than editing all the views ...
0
votes
1answer
639 views
Why can't I use a ContentPlaceholder inside HTML attributes in ASP.NET?
I'm using ASP.NET MVC2 and C#, but this question applies to ASP.NET in general.
This breaks:
<body id="<asp:ContentPlaceHolder ID="BodyID' runat="server" />">
Intellisense underlines ...
0
votes
1answer
63 views
Question about Masterpages
Is it possible to target a contentplaceholder in a hyperlink, and make the page flickerfree, as if you were using ajax? I'm a little bad with Visual Studio so i would hate to reprogram the whole page ...
0
votes
2answers
3k views
ASP.NET - How to get to Div control in ContentPlaceHolder?
I've created very simple web site for the test purpouses. Only one master page and one content page.
My content page looks like this:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" ...
0
votes
1answer
83 views
Is it possible to read the content of a content place holder from the masterpage?
We would like to use a contentPlaceHolder in our pages to set titles. What we would like to do is have the masterpage check the contentPlaceHolder to see if it has content in it. This way we can set ...
0
votes
1answer
79 views
Can I know what page is in my master page's ContentPlaceHolder?
All the Google finds I ran into tell me how to use FindControl to access a control on the master from the content page itself.
However, what I'm trying to do is the opposite.
From the master page, I ...
0
votes
2answers
164 views
ASP.NET: Having common Page title in master page with each page adding page-specific title?
My master page looks like:
<head runat="server">
<title>
<asp:ContentPlaceHolder ID="PageTitlePlaceHolder" runat="server" />
</title>
Content pages look ...
0
votes
2answers
160 views
Adding elements to the Header of the masterpage from contentplaceholder in .NET
I'm with a problem
The scenario is the follow:
After submitting a form the user recieves one message says OK, and is redirected to another page after 2seconds.
The problem is, when insert is ...
0
votes
3answers
436 views
Getting contents of ContentPlaceHolder within C#
I've got a Master Page with multiple ContentPlaceHolders. One of them will sometimes be empty. If they both have content, I'd like to make visible a buffer so there is some space between them, but ...
0
votes
2answers
446 views
Conditional ContentPlaceHolder in Master Page
I have two master pages in my project, one for web views and another for emails. In the web master page is a placeholder to put page specific JavaScript, if a page is using this and I try to ...
0
votes
1answer
1k views
Embedded Javascript in Master Page or Pages That Use Master Page throw “Object Expected Error”
I'm semi-new to writing ASP.Net applications using master pages and I've run into an issue I've spent some time on but can't seem to solve.
My situation is that I have a master page with a structure ...