这是链接的代码,当且仅当会话不为空时,我才想导航,我该怎么做,请帮助我...
<asp:HyperLink ID="HyperLink1" NavigateUrl="Year1Sem1Sub1.aspx" runat="server" align="left" OnClick=(>CIS 11301 Fundamentals of information systems</asp:HyperLink>
<img src="images/guestPic.jpg" align="right"/>
这是我的 Authentication.ascx 代码
public partial class WebUserControl1 : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["loggedUser"] == null)
{
Response.Redirect("loginToTheSite.aspx");
}
}
}