Advertisement

03.28.2006 at 12:19PM PST, ID: 21792512
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.6

How do I add an onclick event to a dynamically created button in C#/ASP.NET?

Asked by digitalconvict in .NET

Tags: , , , ,

I have the following method:

            private void RenderActionTable()
            {
                  User user = GetCurrentUser();
                  if(!user.IsAdmin)
                        return;

                  TableRow row = new TableRow();
                  Button btnAdmin = new Button();
                  btnAdmin.Text = "Admin";
                  btnAdmin.Click += new EventHandler(btnAdmin_Click);
                  btnAdmin.ID = "btnAdmin";
                  TableCell cell1 = new TableCell();
                  cell1.Controls.Add(btnAdmin);
                  row.Cells.Add(cell1);
                  actionTable.Rows.Add(row);
            }

Note: actionTable is a preExisting Table control.

If I call this method from Page_Load() or OnInit(), the button renders just fine, but it never has the eventHandler linked to it.  All I see in the rendered HTML is:

<table id="actionTable" class="actionTable" border="0">
      <tr>
            <td><input type="submit" name="btnAdmin" value="Admin" id="btnAdmin" /></td>
      </tr>
</table>

So why does ASP.NET not add the button event handler ("btnAdmin_Click") that I defined when it renders the button control?Start Free Trial
[+][-]03.28.2006 at 12:50PM PST, ID: 16314751

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 01:13PM PST, ID: 16314970

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 01:20PM PST, ID: 16315023

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 01:35PM PST, ID: 16315187

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 01:57PM PST, ID: 16315424

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 02:03PM PST, ID: 16315475

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 06:05PM PST, ID: 16317311

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 06:24PM PST, ID: 16317395

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 06:35PM PST, ID: 16317442

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.28.2006 at 08:22PM PST, ID: 16317950

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.24.2006 at 06:25PM PDT, ID: 16530863

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]04.28.2006 at 02:58AM PDT, ID: 16560799

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: .NET
Tags: event, button, onclick, click, dynamic
Sign Up Now!
Solution Provided By: GranMod
Participating Experts: 3
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32