[go: up one dir, main page]

0% found this document useful (0 votes)
48 views1 page

Assignment

The document outlines 15 programming tasks related to ASP.NET controls and functionality including displaying data using calendar, dropdownlist, validation and navigation controls; uploading images; cross page posting; AdRotator; Wizard; dynamic tables; CRUD operations with and without stored procedures; paged and sorted GridView display; conditional row styling; and using a DataAdapter with DataSet.

Uploaded by

Rajesh Vhadlure
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
48 views1 page

Assignment

The document outlines 15 programming tasks related to ASP.NET controls and functionality including displaying data using calendar, dropdownlist, validation and navigation controls; uploading images; cross page posting; AdRotator; Wizard; dynamic tables; CRUD operations with and without stored procedures; paged and sorted GridView display; conditional row styling; and using a DataAdapter with DataSet.

Uploaded by

Rajesh Vhadlure
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

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.

You might also like