in asp.net (with VB) how can we redirect (in code Behind) our pa开发者_高级运维ge to another one?
Response.Redirect("/WhateverUrl.aspx")
Using Response.Redirect.
Response.Redirect("newUrl.html")
To transfer the page w/o changing the browser's URL:
Server.Transfer("newUrl.html")
精彩评论