Posts

Showing posts from October, 2021

Registration page in Asp.net

Step 1 - Create Tables from below Query ------------------------------------------------------------------------------------------------------------------- Create Database test use test -------------------------------------------------------------------------------------------------------------------- CREATE TABLE tbl_Countries (      CountryID INT     ,CountryName VARCHAR(50)     ) INSERT INTO tbl_Countries VALUES (1,'INDIA'),(2,'NEPAL') //select * from tbl_Countries CREATE TABLE [dbo].[States]( [StateId] [int] primary key identity, [CountryID] [int] NOT NULL, [StateName] [varchar](100) NOT NULL) INSERT INTO [States] VALUES (1,'UP'),(1,'DELHI') INSERT INTO [States] VALUES (2,'KATHMANDU'),(2,'POKHRA') //select * from States CREATE TABLE [dbo].[Cities]( [CityId] [int] primary key identity, [StateId] [int] NOT NULL, [CityName] [varchar](100) NOT NULL ) INSERT INTO [Cities] VALUES (2,'New Ashok Nagar'),(2,'Saket') INSERT INTO...