0
votes
0answers
22 views
Dynamic textbox inside gridview
Hi all,
We are creating dynamic textbox inside the gridview. Without entering data in the textbox the tab key is working fine. But pressing tab key after entering values in the te …
0
votes
2answers
116 views
How Do I Get a Dynamic Control’s Value after Postback?
I have a listview that adds controls in the ItemDataBound Event. When the postback occurs, I cannot find the new controls. After a bit of research, I found that ASP .NET needs th …
0
votes
2answers
29 views
Dynamic control and its Event
Hi all,
We are creating dynamic text boxes and buttons inside a grid for each row. Now we want to create click event for each button. Tocreate button inside the grid in using ITem …
2
votes
3answers
70 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' …
0
votes
1answer
31 views
ViewState error: Concurrent users modifying dynamic controls.
Have a page that adds controls dynamically. Control state is being retrieved from database and controls are re-added to page on postback. User can add/delete controls through UI. W …
0
votes
2answers
25 views
Controls are empty after submit
I have a checkboxlist and textbox controls on my asp.net page and the are dynamically created and added to the page. When I populate the values and submit the form, the values are …
0
votes
1answer
83 views
wpf dynamic window
Hello
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 …
0
votes
8answers
396 views
C# dynamically created control issue
i'm having issues retreiving the values out of a dynamically created dropdownlist. all controls are created in the Page_Init section. the listitems are added at that time as well …
0
votes
2answers
1k 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 …
0
votes
2answers
125 views
Dynamic Controls, Update Panels and Events - Best Way To Acheive My Result
Been pulling my hair out and doing a bit of looking on the web to try and figure out an elegant solution to my issue.
I have a ProductImages.aspx page. It shows all of the images …
0
votes
5answers
1k 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 …
1
vote
1answer
105 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
DatEdit:= …
0
votes
3answers
76 views
When to create controls dynamically, so that when I click a button I can save their values?
I am creating some textboxes dynamically and I try to get their values when I click a button, but they are gone. I create the text boxes (declaration, initialization, adding them t …
0
votes
2answers
436 views
dynamic dropdownlist in asp.net
hello
I created dropdownlist at runtime when a button is clicked.and i palced another button to get the selected text from dynamic dropdownlist.When i try to retrieve the selected …
3
votes
3answers
136 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 …
