Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
a)There are 3 frames in a frameset.

Frame set code goes here
<!DOCTYPE html>
<html>

<frameset rows="25%,75%"> <!--(top frame)-->
<frame src="display.html" name="display"/>
<frameset cols="25%,75%">
<frame src="listbox.html" name="listbox" /> <!--(bottom left frame)-->
<frame src="table.html" name="table" /> <!--(bottom right frame)-->
</frameset>
</frameset>

</html>

b)In the bottom right frame draw a table - listing some of the employee names with their JobTitle

c)In the bottom left frame populate the employees names in a dropdown list box

d)Make the Employee Names clickable

e)On click of the employee names display the Name and Job Title of the Employee in the Top Frame

f)Simultaneuolsy select the particular employee name in the drop down listbox

g)When the user selects an employee from the dropdown listbox fetch his job title from the bottom right frame and display it in the top frame
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900