Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Linkbutton command does not fire
Message
From
26/01/2004 09:28:57
Martin Van Krieken
Capgemini Nederland Bv
Utrecht, Netherlands
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Linkbutton command does not fire
Miscellaneous
Thread ID:
00870542
Message ID:
00870542
Views:
51
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
Next
Reply
Map
View

Click here to load this message in the networking platform