The number and details are to be stored in the same table for generation of numbers i am using the below code
DataColumn col=new DataColumn("Number",typeof(System.String));
col.AutoIncrement=true;
col.AutoIncrementSeed =-1;
col.AutoIncrementStep =-1;
Label1.Text="Number is : + 'Number'";
but not able to achieve the target of displaying the increasing order of the number Is the above code coreect for generation? Or any good sites for reference thanks in advance