In my ASP.Net web page, I want to change the active index numerical values to text values.
For instance, the active index currently renders numerically as 1, 2, 3, 4, etc… I would like to have this index render as a, b, c, d, etc…
Could you please suggest a way to do so?
You can convert them easily using:
It will return a when index is 1, b when 2 and so on…
You will have to write additional code if you want aa for index value of 27.