当我点击联系我们时,我的登录页面root/Account/Login.aspx
需要重定向到root/contactus.aspx
页面。我Response.Redirect("~/contactus.aspx")
在母版页(Site.Master)中使用
Protected Sub lbContactUs_Click(sender As Object, e As EventArgs) Handles lbContactUs.Click
Response.Redirect("~/contactus.aspx")
End Sub
它仍然没有重定向到页面。