Generate unique characters????
-
I am devoloping Flight Reservation System. I want to generate six unique character for the purpose of reservation number to the client who online make his reservation. Any help please???????? aLi
-
I am devoloping Flight Reservation System. I want to generate six unique character for the purpose of reservation number to the client who online make his reservation. Any help please???????? aLi
I am using ASP.Net, C#. aLi
-
I am devoloping Flight Reservation System. I want to generate six unique character for the purpose of reservation number to the client who online make his reservation. Any help please???????? aLi
-
There are generally two methods: 1. Generate the code by encrypting the unique id of the reservation. 2. Generate a code randomly and check against that database that it isn't in use already. --- b { font-weight: normal; }
I have used System.Guid.NewGuid().ToString(); is it OK???. since it generates unique id. other problem that i am facing is that how i store reservation id, passenger information in a database. I am using SQL DATABASE which is in ASP.Net 2.0. How can i insert values in that database. I can insert values using SQL SERVER 2000 by using code. But i don't know how i can do it using SQL DATABASE in ASP.Net 2.0 Please help me.... aLi
-
I have used System.Guid.NewGuid().ToString(); is it OK???. since it generates unique id. other problem that i am facing is that how i store reservation id, passenger information in a database. I am using SQL DATABASE which is in ASP.Net 2.0. How can i insert values in that database. I can insert values using SQL SERVER 2000 by using code. But i don't know how i can do it using SQL DATABASE in ASP.Net 2.0 Please help me.... aLi
There is no database included in ASP.NET. Do you mean the database that comes with Visual Studio? That is the developers edition of SQL Server. It works just the same. Use an identifier in the database to create the unique id instead. --- b { font-weight: normal; }
-
There is no database included in ASP.NET. Do you mean the database that comes with Visual Studio? That is the developers edition of SQL Server. It works just the same. Use an identifier in the database to create the unique id instead. --- b { font-weight: normal; }
Thanks b... I have done it. aLi