nong
|
| Posted: 10/21/2002, 7:06 AM |
|
Can Someone help me
how I can Show record number in grid like this
No. Detail
1 one
2 two
3 three
please tell me code in asp Please
|
|
|
 |
Nicole
|
| Posted: 10/23/2002, 6:36 AM |
|
Hello,
1. in CC. Declare the counter variable in the form Open event:
i = 0
then increment it and concatenate with any field in the form Before Show event:
i = i+ 1
fldname = I & ". " & fldname
2. in CC create form Before Show Row event, switch to events file and declare counter at the very top of the file, right after open asp tag:
<%
Dim i
Increment it and concatenate with any field in the event code:
i = i+1
form_name.field_name.Value = I & ". " & form_name.field_name.Value
|
|
|
 |
nong
|
| Posted: 10/27/2002, 6:12 PM |
|
thank you nicole ..
but when if I set maximum record to 10 per page
when the new page ccs reset label of number record to 1 again
how i write the complete code to solve this ploblem
please help me in asp code with codecharge studio
thank you
|
|
|
 |
|