1 Attachment(s)
[RESOLVED] How to get a button element right next to <div> tag..please see the attachement
Hello,
Please see the attachement. I would like to have a button element right after a div tag , meaning horizontally. But for some reason the button element displays below the div tag on the IE screen. BTW we only use IE browser.
HTML Code:
<div style="height: 65px; width: 416px;">
<fieldset style="width: 391px; height: 47px;">
<legend style="font-weight: bolder">Market data curves</legend>
<asp:DropDownList ID="DropDownMarketdataCurves" AutoPostBack="true" runat="server" Height="23px" Width="362px">
</asp:DropDownList>
</fieldset>
</div>
<div>
<asp:RadioButtonList ID="RadioButtonListViewType" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow">
<asp:ListItem Value="1">Grid view</asp:ListItem>
<asp:ListItem Value="2">Chart view</asp:ListItem>
</asp:RadioButtonList>
<asp:Button ID="ButtonGo" runat="server" Text="Go" onclick="ButtonGo_Click"/>
<asp:Button ID="Button1" runat="server" Text="VS2 Marketdata"
onclick="Button1_Click" Width="44px" />
Thanks much
nath
Re: How to get a button element right next to <div> tag..please see the attachement
Please ignore. I replace div tag with table tag and it works.