I'm having an issue with the placement of my ASP button and button dropdown list. The dropdown always appears below the other buttons, but I want it to be in the same row as the other buttons.
Below is a screenshot showing the current layout of the buttons (the dropdown is taken from Bootstrap 2.3)
See my code snippet below:
<div class="alert alert-success">
<a href="#" class="alert-link">
<p align="right">
Welcome <%=GetUserName()%>
(Admin Level)
</a>
<asp:Button ID="btnUsr" class="btn btn-default" runat="server" OnClick="btnUsr_Click" Text="User Management"/>
<asp:Button ID="btnUpload" class="btn btn-info" runat="server" OnClick="btnUpload_Click" Text="Upload Files" />
<asp:Button ID="btnlogout" class="btn btn-success" runat="server" OnClick="btnlogout_Click" Text="LogOut" />
<li class="dropdown" style="list-style: none;">
<a href="#" data-toggle="dropdown" class="dropdown-toggle btn btn-primary">More <b class="caret"></b>
</a>
<ul aria-labelledby="dLabel" role="menu" class="dropdown-menu">
<li>
<a href="SendSMS.aspx">Send SMS</a>
</li>
<li>
<a href="CommonPageManagement.aspx">Manage Pages & Sections</a>
</li>
</ul>
</li>
<br />
</div>