Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.40K
~3K People Reached
Favorite Forums
Member Avatar for vangraan

I dynamically create some linkbuttons and assign them the same EventHandler: [CODE]lb.Click += new System.EventHandler(engCat_Clicked);[/CODE] In the engCat_Click event, it sets a static variable to the value of the LinkButton's ID that was clicked: [CODE]protected void engCat_Clicked(Object sender, EventArgs e) { LinkButton lb = (LinkButton)sender; string engcatID = lb.ID; currentEngCatID …

Member Avatar for rawat_raju1985
0
3K