当点这个按钮的时候不能实现跳转到指定的页面 ,帮忙看一下参数不正确吗?   
protected void btnrest_Click(object sender, EventArgs e)
    {
        Response.Redirect("index.aspx");
    }

解决方案 »

  1.   

    Response.Redirect("~/index.aspx"); 
    加上~/再看看。
      

  2.   

    路径  看看当前页面与index.aspx页面是在同一级吗
      

  3.   

    index.aspx 是否在同一目录下
    Response.Redirect("~/index.aspx");跳转到根目录下的index.aspx 
      

  4.   

    换成这样: 试一试。Response.write("<scirpt>windown.location.href='index.aspx'</script>");
      

  5.   

    看看你目前页面和index.aspx页面是不是在同一文件夹下面
      

  6.   

    在属性里面需要加个 Onclik这个属性