In aspx my code is as follows:
<
table width="100%" cellpadding="0" border="1" cellspacing="0">
<tr><td><rad:radupload SkinsPath="~/RadControls/Upload/Skins" id="Radupload1" runat="server" initialfileinputscount="1" />
<rad:radprogressarea id="RadprogressArea1" runat="server" displaycancelbutton="True"></rad:radprogressarea>
</td><td><div style="float:right;margin-right:9px;height:132px;width:250px;" class="module">
<asp:label id="labelNoResults" runat="server" visible="True">No uploaded files yet</asp:label>
<asp:repeater id="reportResults" runat="server" visible="False">
<headertemplate>Uploaded files:<br /></headertemplate><itemtemplate>
'<%
#DataBinder.Eval(Container.DataItem, "FileName")%>'
( '<%
#DataBinder.Eval(Container.DataItem, "ContentLength").ToString() + " bytes"%>'
)
<br /></itemtemplate></asp:repeater>
</div></td></tr>
</table>
<
asp:button id="buttonSubmit" class="RadUploadButton" runat="server" text="Submit" />
I want submit button to display in same line of the Add button. How can I do this.