Note that there are some explanatory texts on larger screens.

plurals
  1. POUnable to get the value entered by user on button click event , value is entered in a dynamically loaded textbox
    primarykey
    data
    text
    <p>I have few textboxes on a page which are loaded dynamically on change of text in dropdownlist. The user enters values in these textboxes and clicks on a addnewitem button. In the code behind I want to capture the values entered in these textboxes. But I get the value as empty.</p> <p>On Pageload mthd there is nothing which is referencing to createdynamiccontrols method.Then I have </p> <pre><code> protected override void CreateChildControls() { base.CreateChildControls(); CreateDynamicControls(); } protected override void OnLoad(EventArgs e) { base.OnLoad(e); } protected override object SaveViewState() { return new Pair(base.SaveViewState(), null); } protected override void LoadViewState(object savedState) { base.LoadViewState(((Pair)savedState).First); EnsureChildControls(); } public void CreateDynamicControls() { Student= ddlStudentschool.SelectedItem.Text.ToString(); studentcollege= ddlstudentcollege.SelectedValue.ToString(); int rowPos = 0; DynPanel.BorderStyle = BorderStyle.Solid; </code></pre> <p>Based on the selected of studentschool and studentcollege, the following textboxes &amp; fieldnames will be created</p> <pre><code> Label Mynewlabel = new Label(); Mynewlabel.ID = "lbl" + FldLabel; Mynewlabel.Text = FldLabel; Mynewlabel.Visible = true; Mynewlabel.Font.Bold = true; DynPanel.Controls.Add(new LiteralControl("&lt;td bgcolor=#333&gt;")); DynPanel.Controls.Add(Mynewlabel); DynPanel.Controls.Add(new LiteralControl("&lt;/td&gt;")); if (ControlType == "TextBox") { int textBoxLength; TextBox MynewTextBox = new TextBox(); MynewTextBox.ID = "txt" + Fldname; MynewTextBox.Width = 100; MynewTextBox.EnableViewState = true; MynewTextBox.Enabled = true; did not paste the whole code } protected void DropDownList1_SelectedIndexChanged1(object sender, EventArgs e) { CreateDynamicControls(); } protected void btnAddItem_Click(object sender, EventArgs e) { CreateDynamicControls(); if (DynPanel.Controls != null) { foreach (Control ctrl in DynPanel.Controls) { if (ctrl is TextBox) { TextBox _txt = DynPanel.FindControl(ctrl.ID) as TextBox; int count = DynPanel.Controls.Count; // txtresult.ID = ctrl.ID; txtresult.Text = ((TextBox)ctrl).Text; TextBox txtPath = (TextBox)ctrl.FindControl(""); string result = txtresult.Text; } </code></pre> <p>Firstly i am getting object reference not set to an instance of an object when the createchildcontrols method is called the second time and also if I dont have the createdynamiccontrols method in additem click event, controls are no longer tehre...</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload