This topic is locked
[SOLVED]

 sequence numbers of List page (grid)

7/11/2019 6:13:16 AM
ASPRunner.NET General questions
F
FAISAL A ALMAGHRABI author

how could i add the sequence numbers of List page (grid) rows in the grid of asprunner.net ?

F
FAISAL A ALMAGHRABI author 7/28/2019



Maybe check this:

https://asprunner.com/forums/topic/20596-display-row-line-number-master-or-detail-lists/


This was tried and the experiment was successful:
SELECT *, ROW_NUMBER() OVER(ORDER BY EmpName) AS Row_Number

FROM Employee
See the topic