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 buttons ID retrieval

Dynamic buttons ID retrieval

Scheduled Pinned Locked Moved ASP.NET
tutorial
3 Posts 3 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.
  • G Offline
    G Offline
    greendragons
    wrote on last edited by
    #1

    I created suppose 10 buttons dynamically...... how to get ID of a clicked button protected void Page_Load(object sender, EventArgs e) { for (int i = 0; i < 10; i++) { Button b1 = new Button(); b1.ID = "b" + i.ToString(); b1.Click += b_Click; form1.Controls.Add(b1); } } in event hander of click how to retrieve the ID of clicked button..... protected void b_Click(object sender, EventArgs e) { //want ID here........ }

    B S 2 Replies Last reply
    0
    • G greendragons

      I created suppose 10 buttons dynamically...... how to get ID of a clicked button protected void Page_Load(object sender, EventArgs e) { for (int i = 0; i < 10; i++) { Button b1 = new Button(); b1.ID = "b" + i.ToString(); b1.Click += b_Click; form1.Controls.Add(b1); } } in event hander of click how to retrieve the ID of clicked button..... protected void b_Click(object sender, EventArgs e) { //want ID here........ }

      B Offline
      B Offline
      Brij
      wrote on last edited by
      #2

      Here in the eventhandler sender denotes the which which has invoked the event.So you can get the ID here as

      protected void b_Click(object sender, EventArgs e)
      {
      //Get Id like
      Button b = (Button)sender;
      string buttonId = b.ID;
      }

      Cheers!! Brij Check my latest Article :Exploring ASP.NET Validators

      1 Reply Last reply
      0
      • G greendragons

        I created suppose 10 buttons dynamically...... how to get ID of a clicked button protected void Page_Load(object sender, EventArgs e) { for (int i = 0; i < 10; i++) { Button b1 = new Button(); b1.ID = "b" + i.ToString(); b1.Click += b_Click; form1.Controls.Add(b1); } } in event hander of click how to retrieve the ID of clicked button..... protected void b_Click(object sender, EventArgs e) { //want ID here........ }

        S Offline
        S Offline
        Sandeep Mewara
        wrote on last edited by
        #3

        ((Button)sender).ID

        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