473,386 Members | 1,785 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,386 software developers and data experts.

viewstate and dynamic table

Hi all,

Here's a problem I'm having with a dynamic table. Following the
guidelines here
(http://www.codeproject.com/aspnet/dynamiccontrols.asp), which make
perfect sense. The problem is that the table contains a SELECT box
populated on the initial load. Every time I postback I'm inserting a
column into the table, the dropdown always remains in the last column.
First time I postback the dropdown is populated okay. The second time
its empty.

I'm guessing there's something funny going on with the viewstate
population matching up with the control hierarchy. If I move the
dropdown out of the table everything is okay. This article has a very
good explanation of the page creation sequence
(http://aspalliance.com/articleViewer.aspx?aId=134&pId=). I think
first time around the control tree matches up when its attempting to
populate. In the second postback, the received __viewstate contains
the dynamic cell, inside LoadFromViewState the dynamic cells don't
exist yet, so the select doesn't match up?

Here's some code snippets:
ASPX---------------------------------------------------------------
<form id="Form1" method="post" runat="server">
<table id="tblLines" runat="server">
<tr>
<td>Select one:</td>
<td>
<select runat="server" id="SelLine" NAME="SelLine">
<option selected>Select one</option>
</select>
</td>
</tr>
</table>
<asp:Button ID="BtnAdd" Runat="server" Text="click me"></asp:Button>
<hr>
</form>

ASPX.CS------------------------------------------------------------
private void Page_Load(object sender, System.EventArgs e)
{
if (!IsPostBack)
{
// bind the selectbox to the array to populate it.
string[] strlines = new string[] {"Circle", "Jubilee", "Hammersmith",
"Metropolitan", "Central", "Northern"};

SelLine.DataSource = strlines;
SelLine.DataBind();

persistedControls = new ArrayList();
ViewState["persistedControls"] = persistedControls;
}
else
{
persistedControls = (ArrayList)ViewState["persistedControls"];
RecreatePersistedControls();
}
}

void RecreatePersistedControls()
{
HtmlTableRow tr = tblLines.Rows[0];
foreach (string line in persistedControls)
{

HtmlTableCell tc = new HtmlTableCell();
tc.InnerHtml = line;
tr.Cells.Insert(tr.Cells.Count-1, tc);
}
}

private void BtnAdd_Click(object sender, System.EventArgs e)
{
if (SelLine.SelectedIndex!=0)
{
string line = SelLine.Items[SelLine.SelectedIndex].Text;
HtmlTableRow tr = tblLines.Rows[0];
HtmlTableCell tc = new HtmlTableCell();
tc.InnerHtml = line;
tr.Cells.Insert(tr.Cells.Count-1, tc);
// add the text to the PersistedControls
persistedControls.Add(line);
}
}

Nov 19 '05 #1
1 4809
i think I've figured out what is going wrong here (or at least come up
with a solution to my problem).

the problem occurs when dynamic controls 'push' a viewstate populated
control to another location in the control tree. to fix this problem,
a better approach would be to RecreatePersistedControls immediately
after LoadViewState (rather than the Page_Load), e.g:

protected override void LoadViewState(object savedState)
{
base.LoadViewState (savedState);
RecreatePersistedControls();
}

this way the dynamic controls have been built at the point where
asp.net comes around to populating the select box, and everything
matches. and the viewstate collection is available if you are storing
your data/controls in there.

the aspalliance article I mentioned does have this to say on
LoadViewstate: "The best use of this method is to restore any dynamic
controls you created in events, based on values you must manually save
in ViewState, which is now available to use."

Nov 19 '05 #2

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

Similar topics

1
by: dschectman | last post by:
I have an interesting issue. I need to implement a dynamic table to mimic a select list. Each time you double click from the master list, a row is added to the list of selected items. The list...
2
by: Bernie V | last post by:
Hello group, Can somebody help me to create a dynamic table control from an sql database ? I don't know exacly where I have to start. Any tip, link to the web is ok. Thx in advance!
2
by: dschectman | last post by:
This appears to be a feature of IE JavaScript. I am running IE 6.0 with the latest patches from Microsoft. Are there any workarounds other than re-coding the source HTML to place all the...
2
by: H.c.m. Raaijmaakers | last post by:
Hi, The user can create a dynamic table. In every row are 5 input text boxes. If the second text box gets a onblur event then the value of the third box needs to become the value of the first...
3
by: ryanmhuc | last post by:
Is it possible to have a dynamic table name within a query or a table name that is a variable? This does not work but gives an example: SELECT * FROM concat('table', 'name') - OR - SET @table...
1
by: eureka | last post by:
Hi folks, I am working on a webapplication using Jsp and JS. On my main Jsp(Jsp1) I have a table which is created dynamically inside a <divand contains all the backend-table's records as rows,...
0
by: Dhanasekaran B | last post by:
Dear I need to create dynamic temproray table for reporting purpose.I did't have permission for DDL commands. Without Database Administrator permission, i need to create temp. Dynamic table. (or)...
3
by: arunank | last post by:
Hi, The following code for dynamic table creation is not working. Can anyone please help me. The dynamically created rows and columns are not getting populated. CODE: ========= <html>
3
vikas251074
by: vikas251074 | last post by:
I have created dynamic tables whose length depends upon the number of records. Can I use scrollbar in tables? My code for creating dynamic table is as follows - <% dim conn set conn =...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
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...
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
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,...

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.