我想在page1.aspx加载后10秒加载page2.aspx。这是我的代码。所有帮助表示赞赏。
namespace test
{
public partial class page1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Server.Transfer("page2.aspx");
}
}
}
我希望page1显示10秒然后加载第2页。我不能使用thread.sleep,因为它根本不加载页面。
答案 0 :(得分:1)
没有人取消refresh
元标记。将以下内容添加到 head :
<meta http-equiv="refresh" content="10;URL=Page2.aspx" />
将我的评论发表为答案