Hi Frndz,
Functionality :: UserControl and label display in Same line
Take one table inside td.
Now in this table take two different td to achieve you task.
ASPX Page Code ::
<td class="TLeft">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<uc1:time id="txtStartTime" runat="server" />
</td>
<td>
<asp:Label ID="lblOptional0" runat="server" ForeColor="#0066FF" Text="(Optional)"></asp:Label>
</td>
</tr>
</table>
</td>
Hope this helpful!
Thanks