1
Answer

Application development in C# ASP.NET

Nikhil Vanamamalai

Nikhil Vanamamalai

10y
740
1
Payroll web application
Develop an application that processes employee salaries. For each employee, the user
should enter the following info into textboxes: employee ID, department ID, employee
name, and the number of units completed. Include a Calculate button to display the salary
for the employee. The salary consists of the base salary of $125 and a bonus based on the
number of units completed. Bonus amount is determined as shown in the table below.
Units completed Bonus paid per
1-150 $1.00
151-300 $2.00
Over 300 $3.00
Display employee name, bonus amount and total salary.
-When creating the web site and specifying the location, choose the File System.
-Include your name in the code behind file (.vb or .cs) as a comment at the very top of the
-Name controls with descriptive names, by changing their ID property. Indicate the
control type in the name. For example, a button with the text Submit can be named
“btnSubmit” or ‘SubmitButton’. Do not leave the default name Button1 or name it with
-Name variables with descriptive names.
-Use conversion functions for numeric types.

Answers (1)