How to give space between two textbox while designing textbox through table tag i.e:
<table>
<tr>
<td>
<asp:Textbox id="tb1" runat=server/>
</td>
</tr>
<tr>
<td>
<asp:Textbox ID="tb2" runat="server"/>
</td>
</tr>
</table>
So hear suggest me how to give sapce in between two textbox?
Go to the complete details ...