但是得保证不跳转页面,可百度的这个效果是经过跳转的。也就是说,我得在同一个页面上做出两套效果,于是想到了利用控件的显隐来实现。经过探索,有两种解决方法:
panel1:
一、使用Panel作为容器
可以使用Asp控件Panel作为容器,然后使用其他Asp控件配合实现,这个最为方便,代码如下:panel1:
- <span style="font-size:14px;"><asp:Panel ID="Panel1" runat="server" Font-Size="Medium">
- <span id="sayHello">您好,<span><%=Session["UserName"] %></span></span>
- <asp:HyperLink ID="hlPersonalSpace" runat="server" NavigateUrl="~/NeedHelpSpace.aspx" Target="_self">个人空间</asp:HyperLink>
- <asp:HyperLink ID="hlInfo" runat="server">消息</asp:HyperLink>
- <asp:LinkButton ID="hlQuit" runat="server" OnClick="hlQuit_Click" >退出</asp:LinkButton>
- </asp:Panel></span>
panel2:
- <span style="font-size:14px;"><asp:Panel ID="Panel2" runat="server" Font-Size="Medium">
- 您好,游客
- <a href="#" onclick="$('#w').window('open')">登陆</a>
- <asp:HyperLink ID="hlRegister" runat="server" NavigateUrl="~/Register.aspx" Target="_blank">注册</asp:HyperLink>
- <asp:HyperLink ID="hlSearch" runat="server">帮助</asp:HyperLink>
- </asp:Panel></span>
后台代码:
- <span style="font-size:14px;"> if (Session["UserName"] == null)
- {
- Panel2.Visible = true;
- Panel1.Visible = false;
- }
- else
- {
- Panel1.Visible = true;
- Panel2.Visible = false;
- }</span>
二、使用div作为容器
但是我这里因为使用到了母版,而Asp控件必须放在服务器端form中,这个可能会跟子页引发冲突,导致一个页面具有两个服务器端form。所以,需要改成Html控件。在这里我使用的方法是将相关html控件和标签放到div中,但是div必须添加runat=“Server”,然后才能跟后台进行交互。也可以使用Js直接对div的显隐进行控制,代码如下:
div1:
- <span style="font-size:14px;"><div id="loginBefore" runat ="server" style="font-size:medium">
- <span id="topUser" style="padding-right:25px;">你好游客
- <a href="javascript:void(0)" onclick="$('#w').window('open')">登录</a>
- <a href="Register.aspx">注册</a>
- <a href="#">搜索</a>
- </span>
- </div></span>
div2:
- <span style="font-size:14px;"><div id="loginAfter" runat="server" style="font-size:medium" >
- <span id="topUser1" style="padding-right:25px;">您好,<span><%=Session["UserName"] %></span> |
- <a href="UserLogList.aspx?id=<%=Session["UserID"] %>" >个人空间</a> |
- <a href="UnreadEmail.aspx">消息</a> |
- <a href="#" onclick="loginQuit()">退出</a>
- </span>
- </div></span>
C#后台调用方法:
- <span style="font-size:14px;"> if (Session["UserName"] == null)
- {
- loginBefore.Style["Display"] = "Block";
- loginAfter.Style["Display"] = "None";
- }
- else
- {
- loginBefore.Style["Display"] = "None";
- loginAfter.Style["Display"] = "Block";
- }
- </span>
如果使用Js直接调用的话,可以操控div显隐的方法如下:
- <span style="font-size:14px;"> document.getElementById("loginAfter").style.display = "none";//隐藏
- document.getElementById("loginBefore").style.display = "block";//显示</span>
最终实现的效果如下:
图3:登陆前
图4:登陆后