Response.Write("<script>parent.frrighttop1.location.href='righttop_receive.aspx?startdate=" & CStr(startdate) & "&count=1';</script>")

解决方案 »

  1.   

    parent指的是主框架
    parent.frrighttop1指的是主框架中的另外一个框架
    parent.frrighttop1.location.href这是对主框架中的另外一个框架的链接进行设定,
    'righttop_receive.aspx?startdate=" & CStr(startdate) & "&count=1'
    设定它链接的地址是righttop_receive.aspx页
    并传递两个参数过去startdate=" & CStr(startdate) & "&count=1'
      

  2.   

    页面传参数
    <a href="OtherFrame.aspx?p1=1&p2=a">另外的框架</a>向OtherFrame.aspx传递了两个参数和参数值
    p1=1
    p2=a
      

  3.   

    <a href="OtherFrame.aspx?p1=1&p2=a" target=right>链接</a>
      

  4.   

    TO 虫子
    框架集不是HTM页吗?它可以做成动态页?如果可以的话,请给出一个简单脚本。我要做到的是别一个网页调用主框架,并将其中一些参数传到主框架中的动态页中。
      

  5.   

    main.aspx:<frame>
      <frameset src="top.aspx?id=<%=Request("id")%>" width="" height="">
       ......
    </frame>
      

  6.   

    框架集不是HTM页吗?
    //可以是动态网页