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
TechNet S
NA
5
3.1k
foreach in gridview for the first 10 rows in pagesize=20
Mar 13 2015 2:24 AM
i want to foreach in a gridview for first 10 the rows in a gidview but ,total coloum is 20. in 1st page 10 and 2nd page 10...if CheckBox check all only select first 10 rows .
foreach (GridViewRow row in gvStatus.Rows)
{
CheckBox Check = (CheckBox)row.FindControl("ChkSelect");
if (Check.Checked)
{
}
}
Reply
Answers (
1
)
how to create bootstrap menu using asp.net menu control
Button click event is not firing?