1.
Write a Program to Display holiday details within calendar control
2. Write a Program to Fill Country, State, City in the dropdownlist in asp.net
3. Write a Program to Perform following validation using Validation Control.
3.1 Required Field Validator
3.2 Regular Expression Validator
4. Write a Program to demonstrate ValidationGroup in asp.net
5. Write a Program to demonstrate following Navigation Controls.
5.1 Menu
5.2 TreeView
6. Write a Program to upload the image and display the uploaded Image on GridView.
7. Explain Cross Page Posting.
8. Explain AdRotator with example.
9. Write a Program in asp.net using Wizard to get following information and display on Final Step.
9.1 Step 1 : Personal
9.2 Step 2 : Educational
9.3 Step 3 : Cast
9.4 Step 4 : Display All info.
10. Write a Program to Create 5*5 runtime table.
0,0 0,1 0,2 0,3 0,4
1,0 1,1 1,2 1,3 1,4
2,0 2,1 2,2 2,3 2,4
3,0 3,1 3,2 3,3 3,4
4,0 4,1 4,2 4,3 4,4
11. Write a Program to perform insert, update, delete option using following table without stored
procedure.
Employee – EmpID, Name, Age, Gender, MobileNo, Salary
12. Write a Program to perform insert, update, delete option using following table with stored
procedure.
13. Write a Program to display all record from employee table in GridView with pageing and sorting.
14. Write a Program to display all employee on following condition (Row_DataBound).
If Salary > 20000 – Color Green
If Salary > 10000 and Salary < 20000 – Color Blue
If Salary < 10000 – Color Red
15. Write a Program to display all record from employee table in GridView using DataAdapter and
DataSet.