Bubble Control Event
-
I am having a grid and it contains two columns. The First Column contains one Image and the second column contains table and in the first row of the table i have a Link button like this : ]]>' runat="server" ID="BookTitle"> And i want to invoke an event during onclick event of this link button. Also if i use onSelected_IndexChanged event in grid view like : public void GridView1_OnSelectedIndexChanged(object sender,EventArgs e) { e.----------- } This event is not occuring. I am working on 2.0 gridview.What should i do to invoke the event .Where i am wrong. Can anybody helpme
VanithaVasu
-
I am having a grid and it contains two columns. The First Column contains one Image and the second column contains table and in the first row of the table i have a Link button like this : ]]>' runat="server" ID="BookTitle"> And i want to invoke an event during onclick event of this link button. Also if i use onSelected_IndexChanged event in grid view like : public void GridView1_OnSelectedIndexChanged(object sender,EventArgs e) { e.----------- } This event is not occuring. I am working on 2.0 gridview.What should i do to invoke the event .Where i am wrong. Can anybody helpme
VanithaVasu
The LinkButton should have a CommandArgument as "Select". This would trigger the SelectedIndexChanged event. Have you noticed it?
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot