How Many record. Like to know?

  • Thread starter Thread starter Scott M.
  • Start date Start date
S

Scott M.

First, in ASP.NET there is no "scripting". It's all compiled code now.

Second, are you asking for how to do everything you are saying below or just
how to count up how many records matched?

To count how many matched, it's easy...just include your own variable
counter in the loop that gets incremented when you've determined there is a
match.
 
There's no attitutude here. I'm trying to help you to understand the
environment you are working in and I'm asking you to clarify your question
so that I can help you get your answer.

Thanks for biting a hand that's trying to help!
 
I'm using ASP.net with vb, Access database and SQL query, I'm trying to
count records that match with a particular criteria after making a loop
statement and after displaying any records.
Does any one of you knows the asp.vb.net script
 
Lol,

Okay if you have a data within a DataSet and if you only have one table in
that dataset
you can get the count by DataSet.Tables[0].rows.count
[] could be ( ) in vb.net
and then you can iterate through the dataset table rows and get individual
columns to display

Regards,

HD
PS: Its better to be clear when asking a question
 
Thanks this work perfect

Hermit Dave said:
Lol,

Okay if you have a data within a DataSet and if you only have one table in
that dataset
you can get the count by DataSet.Tables[0].rows.count
[] could be ( ) in vb.net
and then you can iterate through the dataset table rows and get individual
columns to display

Regards,

HD
PS: Its better to be clear when asking a question

Scott M. said:
There's no attitutude here. I'm trying to help you to understand the
environment you are working in and I'm asking you to clarify your question
so that I can help you get your answer.

Thanks for biting a hand that's trying to help!


there
is trying
to
 
Back
Top