I have an application with a simple form which populates a backend SQL database. At the moment I can enter as much information as i like but if I go over the database field limit it gets truncated.
Is there a way I can specify the number of characters allowed at the data entry satge.
A snippet of my current code is as follows:-
<tr><td class='tdRowLabel'>Initials:</td> <td>
<asp:TextBox ID="txtInitials" Text='<%#Eval("Initials") %>' Size = "5" runat="server" />
</td></tr>
Thanks in Advance
Is there a way I can specify the number of characters allowed at the data entry satge.
A snippet of my current code is as follows:-
<tr><td class='tdRowLabel'>Initials:</td> <td>
<asp:TextBox ID="txtInitials" Text='<%#Eval("Initials") %>' Size = "5" runat="server" />
</td></tr>
Thanks in Advance