Hi Every Buddy,
Hope you all r Good.
I faced small Problem Please Give Suggestions .
i need How to develop the Autoincrement Job Ids .Ex:Jd101+CurrentDate . when Page Load Display The textBox Automatically IDs in my Form please Help me...
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Venkat KumarPosted May 13, 2015, 1:06 AM
please check this. It may helps you.
Random random = new Random();
for(int i=0; i<1; i++)
{
s=random.Next(10,200); //To specify the range for random numbers
}
refno = Convert.Toint32(DateTime.Now.ToString("ddMMyyyy"))+s;
Abhay ShankerPosted May 12, 2015, 10:20 PM