如何在asp.net母版页中获取下拉菜单?
在我的母版页中,我有一个表格,在该表格内有这些,这是用于在用户登录网站后显示用户名。我想要一个图标,点击它应该显示注销,更改密码。我该怎么办呢。类似 Facebook 的东西,点击时会出现一个倒三角形,显示隐私设置。
<td class="style1">
<asp:Label ID="Label_Welcome" runat="server" Text="Welcome:"></asp:Label>
</td>
<td>
<asp:Label ID="Label_UsereName" runat="server" Text="Label"></asp:Label>
</td>
In my master page I have a table and inside that table I have these, This is for displaying the username after user login to the website. I want to have a icon when clicked it should display signout, changepassword. How can I do that. Something similar like facebook where there is a inverted triangle whenclicked displays privacy setting.
<td class="style1">
<asp:Label ID="Label_Welcome" runat="server" Text="Welcome:"></asp:Label>
</td>
<td>
<asp:Label ID="Label_UsereName" runat="server" Text="Label"></asp:Label>
</td>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这种类型的菜单可以使用jquery制作,
请参阅此链接Facebook 风格 CSS JQuery 下拉菜单
this type menu can be made using jquery
refer to this link Facebook Style CSS JQuery drop down menus
您需要研究一些 javascript 代码来显示/隐藏您的选项。
jQuery 切换 或 jQuery Show 将是一个很好的起点。
You will need to look into some javascript code which will show/hide your options.
jQuery Toggle or jQuery Show would be a good place to start.