Eghawt
|
| Posted: 07/26/2002, 10:11 PM |
|
I appreciate if some one can give me an idea as to how I can add a column to a table grid showing record number /serial number.
I am using CCS and ASP.
Thanks
Eghawt
|
|
|
 |
Nicole
|
| Posted: 07/30/2002, 1:30 AM |
|
Hello,
well, to do it declare the counter variable at the top of event file, e.g.:
Dim number
number = 0
Assuming that you have added special columns and e.g. label field to the grid form to display record number create Before Show Row event for the form like:
number = number +1
form_name.label_field_name.Value = number
|
|
|
 |
mycomputer
|
| Posted: 10/27/2002, 6:08 PM |
|
Hello,
well, to do it declare the counter variable at the top of event file, e.g.:
Dim number
number = 0
Assuming that you have added special columns and e.g. label field to the grid form to display record number create Before Show Row event for the form like:
number = number +1
form_name.label_field_name.Value = number
and how?
If I set Maximum record per page to 10
if new page it reset 1 why
please help me asp code
|
|
|
 |
|