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
SAIRAJ MORE
NA
12
2.6k
my add row code is working but delete row code is not work
Nov 7 2016 10:38 PM
my add row code is working but delete row code is not work so please help me..?
protected void btnAddRowNonTaxRevenue_Click(object sender, EventArgs e)
{
for (int i = 2; i < 11; i++)
{
HtmlTableRow tr = ((HtmlTableRow)this.FindControl("ntrNTR" + i));
if (tr.Visible == false)
{
tr.Visible = true;
break;
}
}
}
protected void btnRemoveRowTaxRevenue_Click(object sender, EventArgs e)
{
for (int i = 2; i > 11; i++)
{
HtmlTableRow tr = ((HtmlTableRow)this.FindControl("trTR" + i));
if (tr.Visible == false)
{
tr.Visible = false;
break;
}
}
}
Reply
Answers (
1
)
Draw a path between multiple points with help of Database
How to upload a video to aws with ftp connection?