473,403 Members | 2,183 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,403 software developers and data experts.

Help!! how to get the value of dynamic web user control?

hb
Hi,

I have a page that uses dynamic generated web user control.
On the eupdate.aspx, I get:
===
<asp:table id="tblE" runat="server">
<asp:tablerow id="rE" runat="server">
<asp:tablecell id="cE" runat="server" />
</asp:tablerow>
</asp:table>
<asp:button id="btnUpdate" runat="server" text="Update" />
===

On the eupdate.aspx.cs, I get:
===
protected System.Web.UI.WebControls.Table tblE;
protected System.Web.UI.WebControls.TableRow rE;
protected System.Web.UI.WebControls.TableCell cE;
protected System.Web.UI.WebControls.Button btnUpdate;

private void Page_Load(object sender, System.EventArgs e)
{
cE.Controls.Add(new LiteralControl("<table><tr>"));
for (int i=0;i<10;i++)
{
GofBiz.controls.electricuse eu =
(electricuse)LoadControl("/controls/electricuse.ascx");

//----assign value to eu control----

cE.Controls.Add(new LiteralControl("<tr>"));
cE.Controls.Add(eu);
cE.Controls.Add(new LiteralControl("</tr>"));
eu=null;
}
cE.Controls.Add(new LiteralControl("</table>"));
}

private void btnUpdate_Click(object sender, System.EventArgs e)
{
int n2=cE.Controls.Count;
for(int j=0;j<n2;j++)
{
Response.Write(cE.Controls[j].GetType().Name+"<br>");
}
Response.End();
}
===
But in btnUpdate_Click() event, it finds no control in cE tableCell.
It seems that the controls added to cE only have their live time in
Page_Load(). Would you please tell me how persist the live time
of those dynamic web user control from Page_Load() into btnUpdate_Click() ?

Thank you

hb
Nov 18 '05 #1
1 2529
tr
Build the controls in page_load only when page.IsPostback is false

Nov 18 '05 #2

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

Similar topics

2
by: theComputer7 | last post by:
I cut down the code to make this half way understandable... I have read Data Grid girls caution about over use of dynamic controls. I truly believe what I am doing requires dynamically inserted...
1
by: Shourie | last post by:
I've noticed that none of the child controls events are firing for the first time from the dynamic user control. Here is the event cycle. 1) MainPage_load 2) User control1_Load user clicks a...
1
by: ronniek | last post by:
Hi, I'm trying to load a WebUserControl (.ascx) into a PlaceHolder but I keep getting an exception that the Page Tree ViewState is modified. If I load the WebUserControl by the designer (not...
2
by: John Ninan | last post by:
I am creating Dynamic Usercontrol in Asp.net application. In this application I have a combobox(aspx Page). Which contains various items. Based on item selected I am dynamically populating...
4
by: EvelynAnd Ethan | last post by:
Hi, ItemCommand event not firing from a dynamic user control ,WHERE A DATAGRID HAS BUTTON,when i click on the linkbutton first time the itemcommand event doesnt fire,second time event fires up ...
2
by: Developer_Software | last post by:
Thanks in advance to anyone who can help :) I've got a placeholder control WITHIN A USER CONTROL that has its contents dynamically added and removed at runtime by a regular .aspx page. At...
1
by: Stanley Cheung | last post by:
Dear all, how can I pass a parameter to dynamic user control? As I know we can pass parameter into traditional user control. e.g: add pageid into user control and write a property from user...
1
by: Tarun Mistry | last post by:
Hi all, I am adding dynamic user controls with the simple code as follows: MyPlaceHolder.Controls.Add(LoadControl("MyUserControl.ascx")); I then want to run a member on my user control,...
0
by: Eniac | last post by:
Hi, I've been working on a custom user control that needs to be modified and the validation is causing me headaches. The control used to generate a table of 4 rows x 7 columns to display all...
2
by: archana | last post by:
Hi all, I have created one user control where i want to do fragement caching. what i want is to set value of user control from its containing page. Can i do this? If so how to do this. ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.