Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
4k views

Dynamically Change User Control in ASP.Net

I'm trying to create a web page that will display an appropriate user control based on the selected value of a drop down list. Basically the page layout is this: Drop Down Selection < User ...
4
votes
3answers
1k views

Dynamically Create controls and save the controls values across postback - ASP.Net C#

Consider this - I allow the end user to create a tab control dynamically in an ASP.Net page by getting some details. For each and every tab added I get some settings - Tab Title Tab Content Tab ...
4
votes
4answers
654 views

dynamic controls based on user postback

Suppose I have a treeview, where each treenode contains an id for a different set of user controls. When the user clicks a node, these controls should be loaded to the page. As I understand the ASP ...
4
votes
3answers
942 views

Controls do not appear on dynamically created user control

I have user control named DateTimeUC which has two textboxes on its markup: <asp:TextBox ID="dateTextBox" runat="server"></asp:TextBox> <asp:TextBox ID="timeTextBox" ...
3
votes
1answer
190 views

Dynamic controls in ASP.NET

I've created a Windows Forms Application in C# which allows users to add controls to a TabPage which they can resize and reposition. Now I want to do the same thing only in ASP.NET. I managed to add ...
3
votes
3answers
312 views

ASP.NET / C# confusion over dynamically created controls

Ive been playing around with the default ASP.NET web application template and the following code throws an exception: Object reference not set to an instance of an object. when clicking the ...
3
votes
2answers
86 views

okay, exactly where should i create dynamic controls

I have just been active on two questions regarding dynamic controls, the answer is nearly always about re-creating on postback, the question is where is the correct place for this Here are the two SO ...
3
votes
2answers
758 views

Nested Dynamic Controls, using Custom Event Handlers

I'm building a WinForm with quite a few dynamic elements, and I think I'm having some trouble with the parent/child relationship within nested controls. All the existing questions I could find seemed ...
3
votes
3answers
489 views

Create an exact copy of TPanel on Delphi5

I have a TPanel pnlMain, where several dynamic TPanels are created (and pnlMain is their Parent) according to user actions, data validations, etc. Every panel contains one colored grid full of ...
3
votes
6answers
1k views

Dynamic ASP.net Web Forms

I am creating an ASP.NET application in which the administrator of the program will be able to define custom fields for forms that the users will fill out and submit. The admin needs to define ...
3
votes
2answers
5k views

Insert dynamic controls into diddle of controls collection

this is my very first post! I'm pretty desperate so I'm going above and beyond my standard googling. I believe this is an advanced or expert-level .NET question. The problem is that I have built a ...
2
votes
2answers
56 views

generating controls dynamically

I have this scenario where I need to generate controls dynamically. I am running a website www.UserReviewCenter.com You can start a search from home page, type in some product type like "radar ...
2
votes
2answers
316 views

Dynamically add LinkButton on Panel

I have ext:FileUploadField on the page. After file upload I need to show a link to this file. I dynamically create a LinkButton, add it on the Panel1, and I can't see the the LinkButton! I dunno why! ...
2
votes
4answers
1k views

Gridview Sorting and Paging with Dynamically Generated Controls

I've gotten myself into a pickle with using dynamic controls in a gridivew. I am binding the gridview to a list and am then adding dyanmic controls. IN order to keep the control state I need to do ...
2
votes
2answers
2k views

dynamic created controls inside UpdatePanel

I want to create control that will allow user to design his own website structure. I imagined that inside UpdatePanel is control(s) with TextBox ( for page name) and Button 'add below'. It would looks ...
2
votes
6answers
394 views

Adding Dynamic Controls

I have a page I need to build out where depending on the selection the user made on a form on the page prior it displays a different set of questions for them to answer. So say the user selects ...
2
votes
2answers
2k views

Dynamic data-entry forms in Silverlight

We are investigating how to create data entry views from a dynamic list of pre-defined field definitions. By "pre-defined", I mean that there are only 8 basic field types. The Silverlight Toolkit's ...
2
votes
2answers
974 views

building dynamic controls on postback (asp.net)

I'm sure this has been answered but I cannot find it...perhaps because the terms are used for so many differing questions...anyway. how is the best way to store information about building dynamic ...
2
votes
4answers
1k views

LoadControl in static/shared function

Anyone know how I can dynamically load a control inside of a shared/static function? The function itself is inside of a mustinherit/abstract class. (It's an ASP.NET project in VB) I want to do ...
2
votes
3answers
1k views

Add dynamic controls in ASP.NET, is there a difference between 1.1 and 2.0?

I am pretty sure back in the days of ASP.NET 1.0/1.1, controls created during runtime needs to be added before Page_Load event of the Page Lifecycle (i.e. inside Page_Init). Here's one article by ...
2
votes
2answers
5k views

accessing hidden-input values edited by javascript in c# ASP.NET

I have dynamically created hidden input controls in a c# codebehind file, and then populate their values with javascript. I now want to access these variables in c#. Firebug shows that the values do ...
2
votes
1answer
12k views

ASP.Net: drop down list and data source created dynamically

I have about 10 drop down list controls that get populated. Instead of copying/pasting and modifying a few fields on each, I would like to create them programmatically. Can this be done? Here is ...
1
vote
3answers
110 views

Listview with Dynamic Controls - Dynamic controls disappear after postback

I have a listview that loads dynamic controls from xml/xslt <asp:ListView ID="DynamicFields" runat="server" DataSourceID="CustomFields" ...
1
vote
3answers
55 views

Add input types on random

I have a input type number. Once the user enters the number in that field. I want to generate that many input types under it. How can I do it with javascript or Ajax for that matter. <table ...
1
vote
2answers
94 views

Dynamic radio button value retrieval

this.Controls.Add(new CheckBox{ Checked = true; }) When I add this in the page_load. It works, it adds the checkbox and it is visible. A little different approach: var button = new CheckBox{ ...
1
vote
2answers
57 views

postBack issue when programmatically adding web controls

I have a problem that I cant seem to find a solution to, even though there are very similar questions to it. Basically I have text boxes that are programmatically created in my Page_Load method. They ...
1
vote
2answers
76 views

How to dynamically and incrementally add controls to a container

I thought this was straight forward, but i have a link button, and I do this in the click event: myContainer.Controls.Add( new FileUpload()); I expect 1 new file control upload to be spawned in the ...
1
vote
1answer
111 views

Can't populate RibbonMenu

I need to populate a RibbonMenu control at run-time, with some data from a database. I take my offset in: ...
1
vote
1answer
244 views

Dynamic checkboxes on classic asp page

I am having some trouble dynamically creating checkboxes on a .asp page. I am using the following code indside of a cell on a table (note - rsMaint is a recordset): <% if not rsMaint.EOF then ...
1
vote
2answers
97 views

ASP.NET MVC 2 Jquery event not fired

i'm building a view for editing a variable length list using this http://blog.stevensanderson.com/2010/01/28/editing-a-variable-length-list-aspnet-mvc-2-style/ solution. Here's my ActionLink: ...
1
vote
2answers
203 views

Dynamically Created Controls or Static Controls that are Hidden or Shown

I've got a set of ASP.Net pages that display a number of asp:TextBox fields depending on the number of entries in a configuration file. I know that the number of fields won't be going above 10 or so. ...
1
vote
1answer
1k views

Iterating Dynamic FileUpload Control Collection in Panel Control using ASP.NET C#

I'm trying to get the values of dynamically generated FileUpload controls that I add to a Panel: <asp:Panel ID="pFileControls" runat="server"> </asp:Panel> I create the controls during ...
1
vote
2answers
1k views

How to name and find dynamically created webcontrols in c#

I am trying to add a unique name to each textbox that I'm adding to a table. I've tried: TableRow someRow = new TableRow(); TableCell someCell = new TableCell(); TextBox someTextbox = new TextBox(); ...
1
vote
1answer
365 views

ASP page get current focused control

So what I have is a bunch of dynamically created textboxs that when the user enters some data and either tabs out or clicks out some calculations are done. After the page posts back control focus is ...
1
vote
2answers
316 views

How to read dynamical added check box?

I am adding checkboxes dynamically to silverlight stackpanel object as follows: foreach (String userName in e.Result) { CheckBox ch = new CheckBox(); ch.Name = userName; ch.Content = ...
1
vote
1answer
134 views

How to bind a function to “Click” event of a dynamically added ImageButton?

I am completely new to Asp.net. I am currently working on a asp.net page coded via Visual Basic On the page I have these image buttons that are dynamically generated based on the SQL Data the page ...
1
vote
2answers
564 views

Dynamic Controls State Management - View State Vs Database

What is the best option to store data pertaining to dynamic controls. Here is my scenario. At any time around 5 to 15 master tables to retreive from. Dynamic Controls can be of type TextBox, ...
1
vote
3answers
539 views

how to post a dynamically created fields in a table using jquery / asp.net mvc

I have a button that will create a new entry (row in a table) dynamically using jquery. Each entry is a row in a html table. for each row, each column has an input (textbox, radio button, checkbox) ...
1
vote
1answer
504 views

wpf dynamic window

I am trying to create a window to act as a switch board for testing an application I'm working on, and having two problems doing so. The first problem is trying to set the size & margin of ...
1
vote
1answer
408 views

Error on setting TDateTimePicker.Font.Style to italic in Delphi 5

Is it possible to set TDateTimePicker’s font to italic? I am doing it in this code var DatEdit : TDateTimePicker; begin //I know Canvas is a stupid name for TPanel ...
1
vote
3answers
1k views

ASP.NET WebControl & Page - Adding controls (like TextBox) dynamically

I'm trying to create a custom server control (WebControl) with a text box. I add asp.net textbox to the custom control in CreateChildControls override. In OnInit override I add event handler to ...
1
vote
5answers
3k views

Validator nightmare on dynamic control C#

I have a requirement to add a RequiredFieldValidator and RegularExpressionValidator to a dynamically created textbox in a dynamically generated tablecell, inside a Web User Control in the Content Area ...
1
vote
2answers
969 views

Get User Input From Dynamic Controls

I am looking to create a dynamic survey. Where I generate all the question controls from the database. Below is an example of what I am trying to do (without the database part). I am able to ...
1
vote
3answers
4k views

Dynamically Created User Controls In C#

I am working in a C# winforms project and I have a user control which gets loaded upon its selection from a tool-strip menu. I have a dictionary lookup set to occur upon form load of the user control ...
0
votes
1answer
25 views

ASP.NET - Dynamic Rows and Page_Load

I am having a problem with an C# ASP.NET form. The purpose of the form is to load some key/value pairs from a database to allow a user to view, edit or delete them. The Key/Value pairs are ...
0
votes
2answers
14 views

Dynamic Controls not Displaying

I am creating controls on some input XML. The controls are then added to the different PlaceHolder Control which is places in a table. Here is the code for reference private void ...
0
votes
0answers
19 views

Refreshing report inside dynamically created TabPanel

I am having a ReportViewer inside the inner TabContainer TabPanel which i generated dynamically in Page Init event. I load the report on OnActiveTabChanged event and I want to refresh the report on ...
0
votes
0answers
21 views

ASP.NET dynamic TextBox value

In OnInit i create multiple checkboxes and TextBoxes and add them to existing Panel. When user selects and writes text, i need to save all values to session. Problem is, that i get Checkboxes values, ...
0
votes
0answers
44 views

How can we retrieve the ASP.NET code when adding controls dynamically to a Page?

I am wondering if there is a similar method to RenderControl(HtmlTextWriter) available on an ASP.NET control but that generates the ASP.NET code from the controls graph? Let's consider the following ...
0
votes
0answers
81 views

Adding Dynamic Controls in PreInit Event

The end result is a webpage with a two contentplaceholders. The first providing navigation for the different sections and a second contentplaceholder that will display the questions in the navigated ...

1 2 3