并且直接动作连接到
add_recorder.aspx页面??用Response.Redirect()不行吗?虽然添加了控件,但页面已经跳转了,也没意义

解决方案 »

  1.   

    我是用分栏做的,Response.Redirect()只更新当前栏
      

  2.   

    是直接动作连接到
    add_recorder.aspx页面。想用代码直接实现按链接字的效果。add_recorder.aspx页面在另一栏中
      

  3.   

    Response.Write("<script defer>document.all('Link').click();</script>");
      

  4.   

    您的目的是要添加一个linkbutton,然后实现框架页面的跳转?
      

  5.   

    是Datagrid中的hyperlinkcolumn实现框架页面的跳转
      

  6.   

    直接在MyDataGrid_EditCommand中输出脚本跳转的那一页:Response.Write("<script>window.top.location.href = 'add_recorder.aspx';</script>");
      

  7.   

    回复:
    直接在MyDataGrid_EditCommand中输出脚本跳转的那一页:Response.Write("<script>window.top.location.href = 'add_recorder.aspx';</script>");能修改一下,转到name="select"的栏中去显示吗?