TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Vikram
1.1k
276
308.1k
Click Event for Link Button not Firing In Dynamic Grid View
Apr 30 2010 6:52 AM
Hi,
I have one Dynamically created Grid View. I have attached RowDataBound event for created GridView which is firing properly. When I add Other Events to the same GridView those are not firing.
Here is my code snippet :
gv.RowDataBound += new GridViewRowEventHandler(gv_RowDataBound);
gv.SelectedIndexChanging += new GridViewSelectEventHandler(gv_SelectedIndexChanging);
gv.RowCommand += new GridViewCommandEventHandler(gv_RowCommand);
And Respective Definitions:
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton lbtn = new LinkButton();
lbtn.Text = e.Row.Cells[1].Text;
lbtn.Click += new EventHandler(lbtn_Click);
e.Row.Cells[1].Controls.Add(lbtn);
}
}
void lbtn_Click(object sender, EventArgs e)
{
//My Code
}
protected void gv_SelectedIndexChanging(object sender, GridViewSelectEventArgs e)
{
// My Code
}
protected void gv_RowCommand(object sender, GridViewCommandEventArgs e)
{
//My Code
}
Is there any specific property require to set for this.
Any Help Appreciated .............
The Code in Red is my code for LinkButton. Given Link Button Click event not firing.
Is there any link of Postback and Event Firing?
Reply
Answers (
10
)
How to solve it plz help me?
java script function