Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7562737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:29:06+00:00 2026-05-30T13:29:06+00:00

Hi I am dynamically creating link buttons in a ‘ul li’ list. I am

  • 0

Hi I am dynamically creating link buttons in a ‘ul li’ list. I am then trying to tie each link button to a click event where i set a label to the text of the link button clicked. however the event that should fire doesnt get fired?

    if (!Page.IsPostBack)
        {
int listItemIds = 0;
       foreach (Node productcolour in product.Children)
       {
           HtmlGenericControl li = new HtmlGenericControl("li");
           LinkButton lnk = new LinkButton();
           lnk.ID = "lnk" + listItemIds;
           lnk.Text = productcolour.Name;
           lnk.Click += new EventHandler(Clicked);
           //lnk.Command += new CommandEventHandler(lnkColourAlternative_Click);
           //lnk.Click 
           li.Controls.Add(lnk);
           ul1.Controls.Add(li);
           listItemIds++;
       }
}

the above is wrapped within a if(!page.ispostback) and the label text is never set anywhere else.
heres to the event

protected void Clicked(object sender, EventArgs e)
{
    LinkButton lno = sender as LinkButton;
    litSelectedColour.Text = lno.Text;

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T13:29:08+00:00Added an answer on May 30, 2026 at 1:29 pm

    Code must run on each postback:

        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
    
            int listItemIds = 1;
    
            for (int i = 0; i < 10; i++)
            {
                var li = new HtmlGenericControl("li");
                var lnk = new LinkButton();
    
                lnk.ID = "lnk" + listItemIds;
                lnk.Text = "text" + i;
                lnk.Click += Clicked;
                //lnk.Command += new CommandEventHandler(lnkColourAlternative_Click);
                //lnk.Click 
                li.Controls.Add(lnk);
                ul1.Controls.Add(li);
                listItemIds++;
            }
        }
    
        private void Clicked(object sender, EventArgs e)
        {
            var btn = sender as LinkButton;
            btn.Text = "Clicked";
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am creating some link buttons dynamically and try to access them in some
I am creating an li element dynamically like this: $(data).find('slide').each(function(numSlide){ var slideLink = $(this).attr('link');
I have a problem with my project . I am creating link buttons dynamically
I'm trying to dynamically create a where clause with link. Now, creating something like
In a page, on the load event, I am dynamically creating controls for display
I am trying to add or connect multiple sql queries dynamically. I am creating
I am creating a gridview dynamically with a ButtonField and several BoundFields. ButtonField button
I am trying to get a dynamically loaded LinkButton to fire a postback event,
I am dynamically creating a bunch of buttons <a href=# id=btnRemove class=ui-state-default ui-corner-all><span class=ui-icon
I am having a problem with connecting a click event to a dynamically added

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.