Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently working on a project. Basically, it is a web system for a tourism company. So the company wants to sell cultural tour programs to the customers. On the reservation page, the user will determine the number of the rooms he/she wants buy. It is a dropdownlist. Then if he/she selects 5 for instance, then new 5 dropdownlists will appar. By this new 5 dropdownlists, he/she will determine the type of the room that they want to stay at. These 5 new dropdownlists lets call them "x" will have click events. The problem is that when I click one of the x's item, the click event doenst work. Besides after that they disappears. I added xes to a panel. I have tried to hold the panel by using viewstate but couldnt get any solution. Can you help me?

<asp:UpdatePanel ID="UpdatePanel2" runat="server">
                            <ContentTemplate>
                                <asp:Label ID="lblRoom" runat="server" Text="How many rooms?"></asp:Label><asp:DropDownList
                                    ID="DropDownList1" runat="server" CssClass="select" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"
                                    AutoPostBack="true">
                                    <asp:ListItem>1</asp:ListItem>
                                    <asp:ListItem>2</asp:ListItem>
                                    <asp:ListItem>3</asp:ListItem>
                                    <asp:ListItem>4</asp:ListItem>
                                    <asp:ListItem>5</asp:ListItem>
                                    <asp:ListItem>6</asp:ListItem>
                                </asp:DropDownList>
                                <asp:Panel ID="pnlDdl" runat="server" Width="300px" >
                                </asp:Panel>
                            </ContentTemplate>
                        </asp:UpdatePanel>

Panel newPanel = (Panel)Session["pnlDdl"];
                int a = 0;
                if (newPanel != null)
                    a = newPanel.Controls.Count;
                pnlDdl = newPanel;
                int selectedItem = Convert.ToInt32(DropDownList1.SelectedItem.Text);
                for (int i = 2; i <= selectedItem; i++)
                {
                    DropDownList ddl = new DropDownList();
                    ddl.ID = "roomType_" + i;
                    ddl.Items.Add(new ListItem("2 Adults", "0"));
                    ddl.Items.Add(new ListItem("2 Adults 1 Extra", "1"));
                    ddl.Items.Add(new ListItem("2 Adults 1 Child", "2"));
                    ddl.Items.Add(new ListItem("1 Adult", "3"));

                    ddl.AutoPostBack = true;
                    ddl.SelectedIndexChanged += new EventHandler(RoomTypeDDL_SelectedIndexChanged);
                    Label lb = new Label();
                    lb.Text = i + ".Type";
                    pnlDdl.Controls.Add(lb);
                    pnlDdl.Controls.Add(ddl);
                }
share|improve this question
2  
Please add some source code to illustrate what you have achieved so far. – PirateKitten Sep 28 '11 at 10:28
@PirateKitten I added some source code – Ktt Sep 28 '11 at 10:34
@PirateKitten after all those, the xes disappear. But when I try to click one of the xes' item, the page postsbacks and I loose all of them. I dont want to loose all of them and I need to achieve the click event to create a new table – Ktt Sep 28 '11 at 10:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.