Hi
I am having a requirement in my project to generate sequential IDs i.e staring from A1001, A1002  and after 10,000 it should start from B1001, B1002,...B10000 ,C1001.. and so on..  I am fetching the max ID from my Database Table by using below SQL
  SELECT TOP 1 [ID_COLUMN] 
  FROM [NAME_OF_TABLE] 
  ORDER BY [ID_COLUMN] DESC
And then have to generate 3 new sequential IDs from the code behind of my ASPX page and then saving them to Table again. I looked through the different possibilities but din't get what exactly wanted. I tried the link below >Auto Generate alphanumeric Unique Id with C# and many more.. but unable to solve problem.
 
     
    