這可以在沒有MVC的情況下完成嗎? 有沒有簡單的方法來抽象或封裝導航邏輯?什麼是在ASP.NET中編碼導航邏輯的最佳方式
我現在有相當多的在我的代碼屁股以下的(我知道這可能不是在做的最好的事情):
protected void btnNext_Click(object sender, EventArgs e)
{
...
if (condition1)
{ Response.Redirect("~/NextPage.aspx"); }
else if (condition2)
{ Response.Redirect("~/AnotherPage.aspx"); }
else
{ Response.Redirect("~/GoBackToOldKentRoad.aspx"); }
}