473,396 Members | 1,992 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

dynamic forms

I am developing a user control that builds dynamic forms
taken from a string
(str_output).

I have a string such as <table><tr><td><asp:checkbox
id="chk1"
runat="server" /><asp:checkbox id="chk2"
runat="server" /></td></tr></table>

Note this is generated from by the call
obj_dbMediaFile.GetMedia (this is a
component I have written)
I have a code behind script which as the following
structure:

sub page_load

if not page.IsPostBack then
CreateContent()
end if

end sub
The create content function puts the string above into a
label called
output:
Public sub CreateContent
dim obj_dbMediaFile as dbMediaFile
str_output =
obj_dbMediaFile.GetMedia
(1,int_currentRecord.value,int_PageSize)

dim obj_control as new Control
obj_control = ParseControl(str_output)
output.Controls.Add(obj_control)

end sub

On running the script the form elements in the string are
correctly
rendered. When a normal button called btn_delete
(hardcoded into the ascx
file) is pressed the function btn_delete_click is called.
Public sub btn_delete_Click(Sender as object ,E as
system.EventArgs )
CreateContent()
IterateThroughControls(me)
end sub
This calls the form creation function and then calls the
function
IterateThroughControls(me).
Sub IterateThroughControls(parent as Control )

Dim obj_control as Control

for each obj_Control in parent.Controls

if typeof obj_Control is checkbox then

'This would suggest that at this point the obj_control
has not been updated

if CType(obj_control, checkbox).checked = true then

testing.Text += "true"

else
testing.Text += "false"
end if
end if

if obj_Control.Controls.Count > 0 then
IterateThroughControls(obj_Control)

end if
next

end sub
This function finds all the rendered checkboxs. This
works fine, whoever it
doesn't seem to be able to access there value (always
sets the label test =
false(s)).
I have noticed that if I try to access the value of the
label named output
(which houses the rendered form elements and is set in
the CreateContent()
function) and place it into another hardcoded label, the
value is empty even
thogh the content has been rendered to the screen.

Any ideas what the problem is?
Nov 17 '05 #1
0 1422

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Bil Muh | last post by:
Esteemede Developers, I would like to Thank All of You in advance for your sincere guidances. I am developing a software using Visual C++ .NET Standard Edition with Windows Form (.NET)...
1
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to...
1
by: mtech1 | last post by:
Access 2002 I am trying to create a dynamic crosstab report that parameters come from 3 different forms. I get runtime error 3070 - The Microsoft Jet database engine does not recognize...
3
by: MikeY | last post by:
Hi Everyone, I am working in C#, windows forms.My question is this. All my button dynamic controls properties are present and accounted for except for the"FlatStyle" properties. I can't seem to...
7
by: AdeelAlvi | last post by:
iam working on a project called service desk that automates the departmental services online .one major component i have to create is that to convert paper based forms into dynamic webforms . i...
2
by: deejayquai | last post by:
Hi I'm trying to produce a report based on a dynamic crosstab. Ultimately i'd like the report to actually become a sub report within a student end of year record of achievement. The dynamic...
3
by: RahimAsif | last post by:
I am writing an application that requires the a portion of the main menu to be dynamic. The menu has file, panels, view files and help across the top. The view files sub menu needs to be...
5
by: matt | last post by:
hello, i am on an interesting project. in this project, i have to create dynamic data-entry forms for offline-users to fill out, save locally, and eventually postback to our app (when back...
0
by: JamesOo | last post by:
I have the code below, but I need to make it searchable in query table, below code only allowed seach the table which in show mdb only. (i.e. have 3 table, but only can search either one only,...
2
by: yomadhu | last post by:
I created a dynamic form in javascript. Am unable to get those values in to php to display. I need all details. If i add 10 rows the i need to display those all values. Can any one help me for that...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.