server:
Response.Redirect(url)client:
window.Location=url

解决方案 »

  1.   

    ASP:Response.Redirect(url) 其实也是Server端发到Client端,由Client来转的你可以看看
    server.transfer(),这个是不用发到Client的
      

  2.   

    区别:Response.Redirect is a round-trip redirection 
    server->browser->server->browser (display a new URL in the address bar) Server.Transfer is a server-side redirection 
    server->server->browser (display the old URL in the address bar) 
      

  3.   

    要跳到页面就是client了
    server服务于client<script language="javascript">
    location.href="index.asp"
    </script>