Hi,
I have 2 frames
Topmenu
bottommenu
in topmenu i have a drop down
when the drop down value is selected i want to refresh the bottom frame and pass the gender of the student
So here is my code this code refreshes the bottom frame
function transval()
{
top.bottommenu.document.location.reload();
}
when i try to sent the value by this code
function transval()
{
var sentgen=document.frm1.txtgender.value;
alert(sentgen);
var bottomURL = "bottommenu.asp?gen=" + sentgen;
top.frames['bottommenu'].location.href = bottomURL;
it doesnt refresh the frame nor does it transfer the value
can someone tell me what i am doing wrong
todd