name = Request.QueryString["name"];
        Response.Redirect("~/student/Default.aspx?name=" + name, true);请具体点,谢谢

解决方案 »

  1.   

    setTimeout( function,时间) 
      

  2.   

    <script language='javascript'>
    setTimeout("redirect()",3000);function redirect()
    {
        location.href='xxx';
    }
    </script>
      

  3.   


        protected void Page_Load(object sender, EventArgs e)
        {
            string id="1";
            Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script language='javascript'>window.setTimeout(\"window.location='a.aspx?id="+id+"'\",10000)</script>");
        }
      

  4.   

    using   System.Threading; 跳转前加上
    Thread.Sleep(3000); //线程停留3秒再执行   
      

  5.   

    js,onload事件中写:执行SetTimeout
    <script language='javascript'> 
    setTimeout("redirect()",3000); function redirect() 

        location.href='xxx'; 

    </script>
      

  6.   

    head里加这个:
    <meta http-equiv="Refresh" content="5;login.aspx"/> 
    5为5秒,login.aspx是登陆的页面
      

  7.   

    今天cnblogs首页上有人写了一个友好的跳转页面,楼主你可以参考一下
    http://www.cnblogs.com/liyou-blog/archive/2009/10/25/1589402.html