Posted on: 8/7/2015 3:22:53 PM | Views : 839

This is a head scratcher.
I have a textbox declared as such
<telerik:RadTextBox ID="txtMailMessage" runat="server" TextMode="MultiLine" CssClass="form-control" Resize="Both" Columns="90" Rows="10" Style="width: 90%; max-width: 50%"> </telerik:RadTextBox> It does not make any difference if I replace the Telerik textbox with a regular asp.net one.
I have a button event handler that is supposed to save the content of the textbox into a database
Protected Sub btnSend_Click(sender As Object, e As EventArgs) Handles btnSend.Click 'no need for Insert Command as it is on aspx page dsNewMail.InsertParameters("SenderSname").DefaultValue = strScreenName dsNewMail.InsertParameters("RecipientSname").DefaultValue = ddAddressBook.SelectedItem.ToStr ...

Go to the complete details ...