Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
2.33/5 (3 votes)
See more:
how can i create a unique number in asp.net4 web application on button click and save it into a database.
Posted
Comments
Sergey Alexandrovich Kryukov 19-Nov-12 16:01pm    
Not quite a correct question. When you say "unique", you should specify: unique in what scope? Nothing is 100% universally unique in the word of finite state systems, and any computer is one of them.
--SA

Would a GUID[^] meet your needs? The object System.GUID has a static method, NewGuid, that lets you generate an identifier pretty much guaranteed to be unique.
 
Share this answer
 
Here is a article on generating Unique numbers in C#
Generate Unique Number in C#[^]

However if you looking to create unique values to insert into database i would recommend you to use Identity Property[^] in the SQL SERVER.
 
Share this answer
 
Hi this a very good article on Random And Unique Code Generation

This is just the logic / Implement it in what ever language you want to.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900