Hi
I am trying to teach myself some scripting and stuff and can't seem to get the hang of frames. I have a page (asp) containing the following:
<SELECT NAME="NotSup" onchange="NotSupChange()" SIZE="1">
<OPTION VALUE="0" SELECTED>Not Supplied
<%
for i=1 to 12
response.write "<Option Value ='" & i & "'>" & montharray(i)
next
%>
</SELECT></p>
function NotSupChange()
vRef="Stats.asp?MonthNo="
vRef=vRef & NotSup.Value
location.href(vRef)
end function
Which will load the page I want, but not in the frame I want.
What should I do? Please don't say scrap the frame, even if you feel like it ).
Thanks
Remou
I am trying to teach myself some scripting and stuff and can't seem to get the hang of frames. I have a page (asp) containing the following:
<SELECT NAME="NotSup" onchange="NotSupChange()" SIZE="1">
<OPTION VALUE="0" SELECTED>Not Supplied
<%
for i=1 to 12
response.write "<Option Value ='" & i & "'>" & montharray(i)
next
%>
</SELECT></p>
function NotSupChange()
vRef="Stats.asp?MonthNo="
vRef=vRef & NotSup.Value
location.href(vRef)
end function
Which will load the page I want, but not in the frame I want.
What should I do? Please don't say scrap the frame, even if you feel like it ).
Thanks
Remou