如何重定向到另一个aspx?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何重定向到另一个aspx?相关的知识,希望对你有一定的参考价值。
所以我正在为一个大学项目开发游戏,我无法重定向到另一个aspx。 DDL有三个难度级别:Easy,Medium和Hard。我设法以某种方式获得简单的级别重定向到正确的aspx页面但是当我选择Medium或Hard并单击Go按钮时它继续重定向到easy aspx。我怎样才能解决这个问题?先感谢您。这就是我在Button中所拥有的。我不确定这是否正确。我仍在学习
DDL1.DataValueField = Convert.ToString("Easy");
DDL1.DataValueField = Convert.ToString("Medium");
DDL1.DataValueField = Convert.ToString("Hard");
if (difficultyValue == Easy)
{
Response.Redirect("/My code/GuessTheNumber.aspx", true);
}
else if (difficultyValue == Medium)
{
Response.Redirect("~/Medium.aspx", true);
}
else if (difficultyValue == Hard)
{
Response.Redirect("~/Hard.aspx", true);
}`
答案
假设您的作业有误,那么您可以尝试使用此代码,这可能对您有用:
if (DDL1.DataValueField == "Easy")
{
Response.Redirect("/My code/GuessTheNumber.aspx", true);
}
else if (DDL1.DataValueField == "Medium")
{
Response.Redirect("~/Medium.aspx", true);
}
else if (DDL1.DataValueField == "Hard")
{
Response.Redirect("~/Hard.aspx", true);
}
以上是关于如何重定向到另一个aspx?的主要内容,如果未能解决你的问题,请参考以下文章
如何在不更改web.config文件中的URL的情况下重定向域?
如果会话过期,如何自动重定向? ASP.Net(从 SessionTimeout.aspx 到 Timeout.aspx)