Changing frames dynamicly

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how can i using vbscript in a web form application create link from frame1 to
frame2
 
MaryA said:
how can i using vbscript in a web form application create link from frame1 to
frame2

you'll have to do it from client.
target=frame2
 
I need the vbscript code of doing that
My code is :

<script language="VB" runat="server">
function loadFrames(frame1,page1)
eval("parent+"."+frame1+".location='"+page1+"'");

end function

</script>

But this code is giving me error likr eval is not defined.
am i missing somthing here?


Thanks for any help you may give me


</script>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top