CS 432
Assignment 1
ASP.NET
Out 1/24/2008, Due 1/31/2008
Objective(s)
1. To use ASP.NET server controls with events
2. To use codebehind along with partial classes
1. This sheet
2. Your report
1. Create an application that uses at least 3 server controls whose action is controlled by events via codebehind and partial class. You choose the controls to use (I would prefer it if you used one we have not used in class) and the events to which you respond. Make sure you use a validation control.
2. Create a database application that uses the Northwind database and does the following. When the application is called a list of all company names is displayed in a combo box (drop down list box). The user will then select one company and in response to this event, all the details of that company are displayed: id, company name, contact name, address, etc. Hint: use the value property of the dropdown box to tie the customer id column.
Graduate
Students
1. Differentiate, using an example, between HTML Server controls and Web Server controls.
2. Use an example to illustrate the __EVENTTARGET property.