Tagged Questions
34
votes
4answers
23k views
4
votes
2answers
3k views
Specify an item placeholder by setting a control's ID property to “itemPlaceholder”
I have only single "Default.aspx" page and a single ListView Control. Why am I getting this error. Never Happened before
"An item placeholder must be specified on ListView 'ListView1'. Specify an ...
3
votes
2answers
6k views
hw to create line breaks between dynamically generated labels in a placeholder?
This is the code below in code behind file's Page_Load event:
LinkButton linkButton = new LinkButton();
linkButton.ID = "LinkButtonDynamicInPlaceHolder1Id" + i;
...
2
votes
4answers
98 views
Updating a section of a page to show “News” (Without using a database) Asp.net C#
I want to have a news section to my page in a placeholder which can be updated relatively frequently with just Text and a Date.
But I do not want it to be linked to a Database, Is there a way this ...
2
votes
1answer
469 views
How to use asp:placeholder inside a repeater
I have a HTML table that is built with a repeater. Sometimes the table has 5 rows, sometimes it has 8 rows.
It was easy to add the header rows.
<asp:PlaceHolder runat="server" ...
2
votes
2answers
276 views
Dynamically creating many instances of ASP.NET usercontrols: How do I create it, and where will my conflicts be?
I haven't seen this implemented before in ASP.NET, but am thinking about a UI that would look and act like this:
Conceptual Overview
A TabControl is loaded and the first tab contains a grid
When a ...
2
votes
2answers
1k views
Loading user controls programatically into a placeholder (asp.net)
In my .aspx page I have;
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" AspCompat="True" %>
<%@ Register src="Modules/Content.ascx" ...
2
votes
1answer
419 views
Can I populate list items in a ASP.NET dropdown list from a ASP.NET Placeholder?
I'm designing my own custom control that contains a .NET dropdownlist. What I'm wondering is if it is possible to populate my dropdownlist with listitems placed in a placeholder?
For example:
...
1
vote
1answer
39 views
ASP.NET Button on Placeholder and Placeholder in an User Control (ascx) file Button event not fired
I am dynamically creating link buttons on user control using a place holder and the eventhandler attached to the link button click+=new Event(Button_Click) is not firing
Thanks in Advance
Code ...
1
vote
2answers
147 views
Rendering Dynamic asp.net webpage into string invoked from another page
The question basically drill's down to these two C# 2.0, ASP.NET 2.0 webpages.
viewtemplate.aspx
generatetemplate.aspx
Purpose of these:
viewtemplate.aspx - Displays Email template defined in ...
1
vote
0answers
302 views
Dynamic placeholder (make on runtime) for load usercontrol
What i've and what i want:
Now i've a user control. and i load the user control just like normal (see below)
<%@ Register src="navigation.ascx" tagname="navigation" tagprefix="navigation" %>
...
1
vote
1answer
610 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
1answer
320 views
placeholder visible always false
I have a placeholder inside updatepanel, thats also inside a placeholder and an updatepanel. However, according to my tests this layout shouldnt matter on this error. My placeholder always have ...
1
vote
2answers
335 views
Getting the content of an ASP.NET System.Web.UI.WebControls.PlaceHolder
I have a server control that has a PlaceHolder that is an InnerProperty. In the class when rendering I need to get the text / HTML content that is supposed to be in the PlaceHolder. Here is a sample ...
1
vote
1answer
633 views
Add an additional label control to an <ItemTemplate> dynamically in certain cases
How can I add an extra label control dynamically (should be added only on certain conditions).
I am trying to do something like this:
<asp:DataGrid id="dg" runat="server" ...
1
vote
1answer
262 views
Changing Dynamic Controls via DropDownList on Content Page
Problem: Content Page with Wizard Control with UpdatePanel and Placeholder. Above the UpdatePanel is a DropDownList. I need to display different input controls below the drop-down list when the user ...
1
vote
2answers
482 views
PlaceHolder In C#
Actually I am new here and not familiar about placeholder. Just hear about it and find generally in ASP.Net.
my question is PlaceHolder is not available in local C# is there any similar control is ...
1
vote
3answers
367 views
UserControl, PlaceHolder and UpdatePanel
I dynamically load a UserControl, with an updatepanel inside, into a placeHolder. When I click an button into UserControl, should refresh the updatepanel that there are in it, but refresh entire page ...
1
vote
1answer
813 views
Adding dynamic links using NavigateURL on ASP.NET (VB)
I Have this code in my page, and I want that every NavigateUrl display another page like :
simple.aspx?id=1, simple.aspx?id=2, ...
Where id = c
Protected Sub Page_Load(ByVal sender As Object, ByVal ...
1
vote
2answers
537 views
What's the difference between PlaceHolder and <div />?
In an ASP.NET project I have the following HTML:
<asp:PlaceHolder ID="plcTitle" runat="server"></asp:PlaceHolder>
<div id="divStrapline" runat="server" />
which are populated ...
1
vote
0answers
84 views
Creating/Handling events for controls when added during runtime
I am using a Repeater which contains a placeholder.
The placeholder is bound to my database and each ItemTemplate contains 1-6 radiobuttons depending on what the database returns.
What I need to do ...
1
vote
2answers
290 views
Updating placeholder during runtime
here is the problem I am having with placeholder:
I have a repeater and within that repeater, I have an item template. Now this template is formatted with a couple of tables, but for this question I ...
0
votes
1answer
22 views
how to find control in ItemTemplate of the ListView from code behind of the usercontrol page?
actually, i'm developing a web template using ASP.NET and C#.
i have a listview in a usercontrol page and inside the ItemTemplate i have a PlaceHolder as below:
<asp:PlaceHolder ...
0
votes
0answers
71 views
Calendar Extender not rendering or working properly in Placeholder Control asp.net
I am trying to create calender extender on runtime and i am getting it but css or background of calender dispalying transparent. Here is my code
Table t = new Table();
...
0
votes
2answers
65 views
How to place ASP.NET custom controls in separate tab panels?
I have a asp.net placeholder which gets populated with many custom controls, each custom control is a summary of a location containing various facts and interactions.
When directly populating the ...
0
votes
2answers
65 views
How to update a PlaceHolder on clicking on LinkButton
I have a simple web page with 5 tabs. Each tab is a LinkButton. The main body is a <div> and I place a PlaceHolder inside it. Now, I want to make a click event on the tabs, so whenever I click ...
0
votes
1answer
157 views
PlaceHolders and Persistent Dynamic Controls (ADVANCED)
Warning! This problem is not for the feint of heart. I've spent several days in all trying to troubleshoot it.
I have a Wizard control with about 5 steps, each with several controls ranging from very ...
0
votes
1answer
134 views
BC30311 error: Why can't I use a PlaceHolder inside a table for a specific user control?
We have a standard asp.net web application and have used asp:PlaceHolders in multiple places. In some files we get this error message during runtime:
BC30311: Value of type ...
0
votes
1answer
83 views
VB.NET Real IDs in place of Placeholder IDs
I have a particular link that I'm trying to convert to an ASP:LinkButton place holder so that I can control it's visibility based on the user type:
<asp:LinkButton id="linkColumnsSelect" ...
0
votes
1answer
498 views
Placeholder for Search-Textbox
I belive anybody knows this Placeholder-Behaviour for Search-Textboxes.
When the page is loaded there is a string in it like "search here..." and as soon the user klicks into the TextBox the string ...
0
votes
3answers
148 views
Misplaced sense of an ASP PlaceHolder control
I have a simple div on html, something like:
<div class="warning">
<h3>Please make sure:</h3>
<asp:PlaceHolder id="phWarnings" runat="server"></asp:PlaceHolder>
...
0
votes
1answer
423 views
ID “itemPlaceholder” is not rendered when using custom LayoutTemplate
I've created a simple ASPX-page, added a ListView control to the page and created two implementations of the ITemplate; one for the LayoutTemplate and one for the ItemTemplate. The trick here is that ...
0
votes
2answers
296 views
How to implement LayoutTemplate with a PlaceHolder
In my own server control, I would like to implement something similar to the ListView:
<asp:ListView runat="server">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ...
0
votes
2answers
190 views
accessing HtmlTable inside a placeHolder
I'm working with a website written in aspx.net over vb.
I have a placeHolder, and I create a table of names inside this PlaceHolder, each name has an HtmlInputCheckBox next to it.
Im doing this in the ...
0
votes
3answers
661 views
asp.net placeholder in the head of a page
I have a page that includes javascript which I only want to run under certain conditions. To do this I have placed the scripts into an asp:placeholder
This actually seems to work but when I run a ...
0
votes
1answer
98 views
ASP.NET WebForms Placeholder for NVelocity View Engine
Is there any way to use placeholder similar to WebForms in NVelocity View Engine (.vm files)?
Today I've got a component containing everything for the <head>, but I wish to specify additional ...
0
votes
2answers
245 views
IE8 says it “cannot display the webpage” when using a dynamic PlaceHolder
I have a ASP.NET page using a PlaceHolder. Grids are build programmatically and added to this PlaceHolder when the page is run. Example:
ASPX Code:
<asp:PlaceHolder ID="myPlaceHolder" ...
0
votes
2answers
195 views
Knowing what input radio is selected on ASP.NET (VB)
I'm creating input radio dynamicly on a ASP.NET page using PlacHolders.
While reader.Read
Dim ltr As New Literal()
Dim ltr1 As New Literal()
Dim ltr2 As New Literal()
Dim ltr3 As New Literal()
Dim ...
0
votes
1answer
579 views
Placeholder containing dynamic table is empty unless I create table twice
I am dynamically creating a table that contains a textbox in each cell. The table is put in a placeholder control. Everything displays perfectly. The problem is when I go to retrieve the values ...
0
votes
1answer
618 views
JQuery to add item to Asp.Net PlaceHolder control
It looks to me that the ASP.Net PlaceHolder control doesn't emit any HTML, and therefore can't be used by clientside javascript or JQuery to add items to the PlaceHolder. Does anyone know of a way ...
0
votes
3answers
1k views
How To maintain ViewState of PlaceHolder in asp.net
please tell me how to maintain state of placeholder. i have a placeholder in which i add many image controls dynamically but when my page get refresh all controls from placeholder gets removed from ...
0
votes
0answers
112 views
Truncating a placeholder and appending 3 dots (…)
I have a requirement to add serveral images to an asp:placeholder control on a webpage. The added images are displayed one after the other across the page. However if the browser is resized by the ...
0
votes
2answers
432 views
asp.net/ajax custom templated control, showing/hiding items with placeholder
I have a custom templated control(toolbar) that contains a custom usercontrol(button) The button uses jquery to style and manage the states/postbacks/non=postbacks etc.
A few of the buttons are ...
0
votes
2answers
570 views
How can the literal contents of a PlaceHolder be read?
I have some code on a User Control that looks like this:
<asp:PlaceHolder id="ph1" runat="server">
<script type="text/javascript">
jQuery(function() {
...
0
votes
2answers
661 views
How to show content from contentPlaceholder inline
I have a page where in my masterpage have a toolbar with a "Home" button to the far left. This button is not in a contentplaceholder but on the page.
I want to have the opportunity for derived pages ...
0
votes
1answer
1k views
ASP.NET C#: Enabling / Disabling all ASP Controls in Table / Placeholder
How do I disable for example all button controls in a certain placeholder?
The plot: I am coding an application for web that uses some buttons which get disabled after you click them.
Now when I ...
0
votes
2answers
983 views
Issue adding multiple controls to placeholder returned by function
I have a function that creates multiple controls. Mainly input fields and an imagebutton with dynamic data for an Amazon payment button.
How can I add these controls to a placeholder so they are ...