Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Dynamic controls

Dynamic controls

Scheduled Pinned Locked Moved ASP.NET
csharpjavaasp-nettoolsquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    priyank_ldce
    wrote on last edited by
    #1

    Hi all, I have to make one web page where user can add dropdownlist dynamically. As many time user clicks on one button it add one dropdownlist control to webpage. Is it possible to do this using ASP.NET without java script? Thanks in advance, Priyank

    T 1 Reply Last reply
    0
    • P priyank_ldce

      Hi all, I have to make one web page where user can add dropdownlist dynamically. As many time user clicks on one button it add one dropdownlist control to webpage. Is it possible to do this using ASP.NET without java script? Thanks in advance, Priyank

      T Offline
      T Offline
      Tarakeshwar Reddy
      wrote on last edited by
      #2

      You can use a PlaceHolder control. On every click of the button event, create a dropdownlist and add it to the PlaceHolder

      protected void btnCreateDropDown_Click(object sender, EventArgs e)
      {
      PlaceHolder phDropdownlist = new PlaceHolder();
      DropDownList dropdown = new DropDownList();
      // Use your logic to give the dropdown an ID and a logic to find which data needs
      // to bind to each of the dropdowns
      dropdown.ID = "SomeName";
      dropdown.DataSource = dataset1;
      dropdown.DataTextField = "Text";
      dropdown.DataValueField = "Value";
      dropdown.DataBind();
      phDropdownlist.Controls.Add(dropdown);
      }

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups