serial key generation in c#.
we have completed our project in c#.
now we want to generate serial keys to install our project.
how can we do this.
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.
Suthish NairPosted Jan 29, 2011, 5:49 AM
Astika might asking about license key generation.
If that the query about, try Guid SerialNo = Guid.NewGuid(); for creating new serials.
or refer: Link1 Link2
Wait more reply !
sswarePosted Aug 9, 2012, 7:01 AM
Mahesh ChandPosted Jan 29, 2011, 6:32 AM
To generate serial numbers, you have to come up with an algorithm.
For example, you can generate a key based on today's date, add some part of your network IP, some your own hardcoded text and so on. Based on this algorithm, your Setup program or your exe has to look back for the same algorithm to verify if the serial number is correct.
Besides this, you can also verify these numbers from your server. This will require users to have an Internet and while installing or running (you choose when), application will connect to the server and verify key in your server database and if match found, continue.
Good luck!
Krishna GaradPosted Jan 29, 2011, 4:35 AM