How to insert data into database using sql server and asp.net



How to insert data into database using sql server and asp.net

How to insert data into database using sql server and asp.net

Beginners can understand the process of database insertion using asp.net

Database command that you can refer

Create database DemoDBTest

use DemoDBTest

Create table Student
(
student_Id int IDENTITY(1,1) primary key not null,
student_name varchar(50),
student_mobile bigint
)

insert into Student(student_name,student_mobile) values(‘test’,989878767);

select * from Student