G Guest Aug 8, 2005 #1 how can i using vbscript in a web form application create link from frame1 to frame2
C Curt_C [MVP] Aug 8, 2005 #2 MaryA said: how can i using vbscript in a web form application create link from frame1 to frame2 Click to expand... you'll have to do it from client. target=frame2
MaryA said: how can i using vbscript in a web form application create link from frame1 to frame2 Click to expand... you'll have to do it from client. target=frame2
G Guest Aug 9, 2005 #3 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>
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>