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
768.6k
how to add link button when gridview row is empty
Jul 24 2015 3:26 AM
I write the code for dynamically create link button
LinkButton lnk = new LinkButton();
lnk.ID = "lnk";
lnk.Text = "LinkButton";
this.form1.Controls.Add(lnk);
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (string.IsNullOrEmpty(e.Row.Cells[2].Text))
{
if (e.Row.Cells[1].Text =="select")
{
lnk.Visible = true;
}
}
}
Gridview as follows
Available Dates
27 May 2015
30 May 2015
1 Jun 2015
Emptyrow
29 May 2015
31 May 2015
2 Jun 2015
i want to link button when gridveiw row is empty.
I tried but it is not working
I want excepted output as follows
Available Dates
27 May 2015
30 May 2015
1 Jun 2015
Link button
29 May 2015
31 May 2015
2 Jun 2015
In the empty row in gridview i want to display the link button in gridview.
Reply
Answers (
1
)
Custom MarkerStyles possible in C#
apply changes when contextMenu is selected