I have a templatecolumn with TextBox in the grid:
OnTextChanged I saves the data, as long as the user types "< with any characters >", it will errored out :
"sys.winforms.PagesRequestManagerServerErrorException: an unknown error ocurred....". Please help how to avoid the error.
<telerik:GridTemplateColumn DataField="Translation2" AutoPostBackOnFilter="true" ShowFilterIcon="false" UniqueName="ForeignTranslation" AllowFiltering="true" FilterControlWidth="200px" HeaderText="Translation2"> <ItemTemplate> <asp:TextBox ID="txtTranslationText" AutoPostBack="true" runat="server" Height="44px" OnTextChanged="txtTranslationText_TextChanged" TextMode="MultiLine" ></asp:TextBox> </ItemTemplate> <HeaderStyle Width="200px" /> </telerik:GridTemplateColumn> OnTextChanged I saves the data, as long as the user types "< with any characters >", it will errored out :
"sys.winforms.PagesRequestManagerServerErrorException: an unknown error ocurred....". Please help how to avoid the error.