Creation of Student Information System | Web Technology | ASP.NET
Step 1: Creating a New Web Application
Step 2: Add Web Form for the empty website application
Website -----àAdd New Item -> WebForm
The default web form name is Default.aspx
Step 3: Adding the Database to the Program.
This also same procedure like how we added the web form
Website --à Add New Item -àSQL Server Database
For Creating Tables in the database first You have to select the Database Explorer
You have Select Tables Folder then right-click and Select Add New table
Then Add Table Columns and its Data Types
Step 4: In this program it consist of 3 Web Pages
1. Default.aspx
2. addstudent.aspx
3. displaystudent.aspx
1. Default.aspx[Design Page]
Default.aspx.cs
3. displaystudent.aspx[Design Page]
displaystudent.aspx.cs
[No Coding for this page]
Step 5: Execution of program
First You have to execute Default page
After Specifying all the Columns and Data Types Press Ctrl+S to save the table with its Name Here it is student.
Step 4: In this program it consist of 3 Web Pages
1. Default.aspx
2. addstudent.aspx
3. displaystudent.aspx
1. Default.aspx[Design Page]
Default.aspx.cs
2. addstudent.aspx[Design Page]
2. addstudent.aspx.cs
After drag and dropping the gridview control keep on pressing Next button, then finish.
displaystudent.aspx.cs
[No Coding for this page]
Step 5: Execution of program
First You have to execute Default page
to add the student click add student button
After adding students to get all the records from the table click the button display students
Post a Comment