登录后如何更改按钮的标签

时间:2012-07-12 19:13:40

标签: javascript java button

我正在用Java开展一个学校项目。我能够成功登录用户注册。但是当他/她如何隐藏时,我如何隐藏登录和注册页面链接并将其替换为MyAlumni。退出后如何再次显示它们。 这是我在MasterPage上的链接编码

 <td id="menucontainer" align="center">
                    <br>
<button id="homeBtn" onclick="window.location.href='Main.do'"></button>
<br>
<button id="loginBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Login'"></button>
<br>
<button id="signupBtn" onclick="window.location.href='ForwardGeneralAction.do?page=SignUp'"></button>
<br>
<button id="helpBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Help'"></button>
<br>
<button id="contactBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Contact'"></button>
<br>

请逐步向我解释我必须做的事情。非常感谢

1 个答案:

答案 0 :(得分:1)

大多数情况下,网站会有一个login.master来处理登录内容,就像site.masterdefault.master来处理剩下的内容一样。我也会在你的情况下建议这个。您只需将登录/注册菜单放在login.master中,然后放在site.master中的另一个菜单中。

在回复您的评论时,无论您当前的母版页是什么,请添加另一个(右键单击,添加,新项目,母版页)并从其他母版页复制标题类型的内容(抱歉,我还没有完成) java中的任何web开发,所以我不知道确切的语法)

然后您的登录母版页(至少其中的菜单部分)将如下所示:

<td id="menucontainer" align="center">
                    <br>
<button id="homeBtn" onclick="window.location.href='Main.do'"></button>
<br>
<button id="loginBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Login'"></button>
<br>
<button id="signupBtn" onclick="window.location.href='ForwardGeneralAction.do?page=SignUp'"></button>

然后您的其他母版页(菜单部分)将如下所示:

<td id="menucontainer" align="center">
                    <br>
<button id="homeBtn" onclick="window.location.href='Main.do'"></button>
<br>
<button id="alumniBtn" onclick="window.location.href='MyAlumni.do'"></button>
<button id="helpBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Help'"></button>
<br>
<button id="contactBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Contact'"></button>

主页的其他内容由您决定!