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
narasiman rao
NA
519
765.4k
Link button event is called please help me i triedseveraltim
Jul 27 2015 7:58 AM
in run mode in gridview as follows
Studentid
30
i write the code as follows
protected void gvPkgcbndate_RowDataBound(Object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[0].Text == "30")
{
var firstCell = e.Row.Cells[0];
firstCell.Controls.Clear();
LinkButton lnk_Check = new LinkButton();
lnk_Check.ID ="lnk_Check";
lnk_Check.Text = firstCell.Text;
lnk_Check.Click += new EventHandler(lnk_Check_Click);
firstCell.Controls.Add(lnk_Check);
e.Row.Cells[0].Controls.Add(lnk_Check);
lnk_Check.Attributes.Add("onClick",return false;");
}
}
}
protected void lnk_Check_Click(object sender, EventArgs e)
{
Response.Write("Link click event is called");
}
In run mode when i click the student id 30 i want to show the message as follows
Link click event is called.
please help me. what is the mistake i made.
i tried several times but when i click the link button in girdview the message not showm
Link button click event is not fired.
Reply
Answers (
1
)
apply changes when contextMenu is selected
C#