Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Linkbutton command does not fire
Message
De
26/01/2004 09:28:57
Martin Van Krieken
Capgemini Nederland Bv
Utrecht, Pays-Bas
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Titre:
Linkbutton command does not fire
Divers
Thread ID:
00870542
Message ID:
00870542
Vues:
53
Hello,

I'm building an ASP.NET (1.1) application. On a page I have a PlaceHolder object. In the code behind file I determine the kind of object to add to the PlaceHolder. Sometimes a LinkButton is added like this:

LinkButton myLinkButton = new LinkButton();
myLinkButton.Text = "Some text";
myLinkButton.CommandArgument = "SomeArgument";
myLinkButton.Command += new CommandEventHandler(MyCommandHandler);
myPlaceHolder.Controls.Add(myLinkButton);

When I run the app I get a linkButton on my form, but when I click on it MyCommandHandler is never executed. MyCommandHandler lokks like this:

protected void MyCommandHandler(Object sender, CommandEventArgs e)
{
DoSomething();
}

I also tried the Click event, but with the same result. What's wrong with my code?


TIA,

Martin
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform