Hi all,
the option ImageStorageLocation="Session" for RadCaptcha I used earlier was working OK, until now.
The problem with the Captcha came right after the latest update of my RadControls was applied (Q3 2013). Simply put, instead of the image with captcha numbers, we now get no image at all.
Looking deeply at the problem, I discovered that if we change the Captcha's ImageStorageLocation to "Cache" the captcha image is rendered as expected. However, I have to use the Session option, because other options was not appropriate (not working) in my hosting environement.
Can anyone help please, or is it a bug in the latest Q3 2013 update.
It took telerik 5 years to fix the case sensitive seeach in the combobox..
New control Radsearch, same old defect, all over again..
Argh...

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item is GridEditableItem) { GridEditableItem edit = (GridEditableItem)e.Item; RadComboBox cmbUserType = (RadComboBox)edit.FindControl("cmbusertype"); DataTable dt1 = ObjGlobas.UserType(); cmbUserType.DataSource = dt1; cmbUserType.DataTextField = "UserType"; cmbUserType.DataValueField = "UserTypeId"; cmbUserType.DataBind(); } }$find("gv").get_batchEditingManager().getCellValue(document.querySelectorAll(".rgBatchCurrent")[5])
<telerik:GridTemplateColumn DataField="CustName"
FilterControlAltText="Filter CustName column" HeaderText="Customer Name"
SortExpression="CustName" UniqueName="CustName">
<EditItemTemplate>
<asp:TextBox ID="CustNameTextBox" runat="server"
Text='<%# Bind("CustName") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="SCustNameLabel" runat="server" Text='<%# Eval("CustName") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
Protected Sub RadGrid1_InsertCommand(sender As Object, e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.InsertCommand
Dim insertedItem As GridEditFormInsertItem = DirectCast(e.Item, GridEditFormInsertItem)
Dim CustName As String = (TryCast(insertedItem("CustNameTextBox").Controls(0), TextBox)).Text
Customer_Insert(CustName)
RadGrid1.Rebind()
End Sub
Protected Sub RadGrid1_UpdateCommand(sender As Object, e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.UpdateCommand
Dim editedItem As GridEditableItem = TryCast(e.Item, GridEditableItem)
Dim CustID As String = editedItem.OwnerTableView.DataKeyValues(editedItem.ItemIndex)("CustID").ToString()
Dim CustName As String = (TryCast(editedItem("CustNameTextBox").Controls(0), TextBox)).Text
Customer_Update(New Guid(CustID), CustName)
RadGrid1.Rebind()
End Sub