Hi all,
I am having issue with an input field called "Comments", which is a textbox. It saves only first 128 characters. The database is SQL Server 2005 and the column is nText. I tried it with nVarchar,... no use.
But, I could able to directly enter hundreds of characters using SQL Server itself.
Please help. Please find the code snippet below.
Thanks,
chandra
I am having issue with an input field called "Comments", which is a textbox. It saves only first 128 characters. The database is SQL Server 2005 and the column is nText. I tried it with nVarchar,... no use.
But, I could able to directly enter hundreds of characters using SQL Server itself.
Please help. Please find the code snippet below.
Thanks,
chandra
HTML:
<tr><td class="tc" style="width: 140px" align="left">
<asp:label id="Label9" runat="server" Width="88px">Comments:</asp:label>
</td>
<td class="tc" colspan="3" align="left">
<asp:textbox id="txtComments" runat="server" Width="512px" Height="62px" Rows="4" TextMode="MultiLine" CssClass="input"></asp:textbox></td>
</tr>
Last edited by a moderator: