Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は通常のデータベースを持っており、メンバーシップ プロバイダーを使用していません。新しいユーザー登録でデータベースに作成される新しいユーザー ID を自動生成したいと考えています。
以下に示すように、これは私が必要とするものです。
これは、GUID (.net の場合) または uniqueidentifier (SQL の場合) です。
Microsoft SQL Server を使用している場合は、次の T-SQL を実行できます。
DECLARE @ID uniqueidentifier; SET @ID = NEWID();
...そして、INSERT ステートメントを実行します。
VB.NET で ID を生成する場合は、次のコードを使用できます。
Dim id as Guid = Guid.NewGuid()