Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
4
Answers
How to count the NULL or balnk line of column
Mfwamba Tshimanga
9y
652
1
Reply
Hi!
I write these code to filter some data. Then on the 11th column there the value "1" to make counter and show it on this value"
lblAusenteTotal.Text
".
What I need to learn?
How can I make it to counter
blank
or
NULL
line of the 11th column.
int sum = 0;
for (int i = 0; i < dvgDatas.Rows.Count; ++i)
{
sum += Convert.ToInt32(
dvgDatas
.Rows[i].Cells[11].Value);
lblResult.Text = " " + sum.ToString();
Post
Reset
Cancel
Answers (
4
)
Next Recommended Forum
Updating from a label inserting sql query
Need to count my row...