or

System.Web.UI.WebControls.
Image image = new System.Web.UI.WebControls.Image();
a.ImageUrl =
"~/Images/Design/Edit.png";
RadRotator1.Items.Add(
new Telerik.Web.UI.RadRotatorItem(image));
(The url is correct, I use it a lot in my web site, and I can see that the rad rotator has the item, using f12 when I run the code in my browser)
Do you have any ideas how to solve this problem?
Thanks!
<telerik:RadWindow ID="CriteriaModal" runat="server" Modal="true" AutoSize="true" AutoSizeBehaviors="Height" VisibleStatusbar="false" ShowContentDuringLoad="false" Width="600px" Behaviors="Resize, Close, Move" OnClientClose="adHocCriteria.editNodeReturnHandler" RestrictionZoneID="radWindowZone"></telerik:RadWindow>adHocCriteria.editNode = function adHocCriteria_editNode(node, logical, logicLocked) { if (logicLocked) logical = logical + '_LOCKED'; // VALUE == FieldLabel \b FieldID \b Operator \b Value var paramValue = 'fieldId=' + encodeURI(logical + '\b') + node.get_value(); adHocCriteria._editNode = node; var modalDialog = adHocCriteria_GetModalWindow(); alert('showing modal, height is ' + modalDialog._height); modalDialog.setUrl(adHocCriteria_GetAdHocCriteriaDetailsModalUrl() + '?' + paramValue); modalDialog.show();}