The document outlines an assignment to create an XML file named 'employee.xml' containing employee details for two individuals. Additionally, it describes the development of an application with functions to display, add, update, delete, and search employee information. The design of these functions is left to the creativity of the developer.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
3 views
Assignment 3
The document outlines an assignment to create an XML file named 'employee.xml' containing employee details for two individuals. Additionally, it describes the development of an application with functions to display, add, update, delete, and search employee information. The design of these functions is left to the creativity of the developer.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2
Assignment 3
1. Give an XML file named as “employee.xml” with the following contents:
<?xml version="1.0" encoding="UTF-8"?>
<employees> <employee employee_no="E0101"> <name>Nguyen Tan Thanh</name> <dob>1986-02-07</dob> <address>23 Vo Thi Sau, Hai Ba Trung, Ha Noi</address> <email>[email protected]</email> <phone_no>098632322</phone_no> <place_of_work>Ha Noi</place_of_work> </employee> <employee employee_no="E0102"> <name>Nguyen Hung Dung</name> <dob>1983-02-07</dob> <address>190 Cau Dien, Tu Liem, Ha Noi</address> <email>[email protected]</email> <phone_no>098334522</phone_no> <place_of_work>Ha Noi</place_of_work> </employee> </employees>
2. Build an application have several functions as below:
Show: when the user press this button, all data of the employee are display on the table in the new frame as below:
When user click to button Add New, Update, Delete or Search; the program should be perform an action to add new employee, update employee information, delete employee or search information of an employee.