Hi
I am using Html Editor in order to enter description.When i click on save button additional <br/> is also saved into database
.The <br/> tag is displayed even in front end while binding to grid .How to rectify this one.I am using the following register
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit.HTMLEditor"
TagPrefix="cc2" %>
<tr>
<td align="left" style="width:200px">
<asp:Label ID="lblfine" runat="server" Text="Fine Details"></asp:Label>
</td>
<td align="left" colspan="2">
<cc2:Editor ID="txtfine" runat="server" Height="200px"
onkeyup="return textMaxLength(this, '100', event);" Width="400px" />
<%-- <asp:RequiredFieldValidator ID="rfvfine" runat="server" ControlToValidate="txtfine"
ErrorMessage="Enter Fine Details" ForeColor="Red"></asp:RequiredFieldValidator>--%>
</td>
</tr>
vijaya