<ImageManager ViewPaths="~/images" UploadPaths="~/images" DeletePaths="~/images" SearchPatterns="*.jpg,*.gif,*.jpeg,*.png" MaxUploadFileSize="900000" />
But it shows like /[VirtualDirecotry]/images as a path for imagemanage, and after adding image it saves file like
<img src="/[VirtualDirecotry]/images/image.jpg"/>
So is there any way to display path like images instead of /[VirtualDirecotry]/images for imagemanage?
And store imagepath like only images/image.jpg, instead of ="/[VirtualDirecotry]/images/image.jpg"/
I want to get rid of virtual direcory name. Because i want to use same folder strucure for another project as well. So it will create problem, because virtual directory name is different, so path of image will not get for another site if i have to copy whole site to another site.
Is there any alternate way for my solution?
Thanks,
Sachin kotak

<table align="center" width="99%" style="table-layout:fixed"> <tr> <td> <telerik:RadGrid ID="rgMelissaOutputReport_Report" runat="server" AllowFilteringByColumn="False" AllowPaging="True" AllowSorting="True" ClientSettings-AllowColumnHide="true" AutoGenerateColumns="True" ShowGroupPanel="False" ShowFooter="False" EnableHeaderContextMenu="true" OnNeedDataSource="rgMelissaOutputReport_Report_NeedDataSource" OnItemDataBound="rgMelissaOutputReport_Report_ItemDataBound" OnPageSizeChanged="rgMelissaOutputReport_Report_PageSizeChanged" OnPageIndexChanged="rgMelissaOutputReport_Report_PageIndexChanged" OnExcelExportCellFormatting="rgMelissaOutputReport_Report_ExcelExportCellFormatting" ExportSettings-IgnorePaging="true" ExportSettings-OpenInNewWindow="true" ExportSettings-ExportOnlyData="true" CssClass="RadGrid_Default RadGrid_Default2"> <MasterTableView CommandItemDisplay="Top" CommandItemSettings-ShowAddNewRecordButton="false" PageSize="50"> <HeaderStyle Wrap="false" /> <ItemStyle Wrap="false" /> <RowIndicatorColumn> <HeaderStyle Wrap="false"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Wrap="false"></HeaderStyle> </ExpandCollapseColumn> <NoRecordsTemplate> <asp:Label ID="lblNoTotalsRecords" runat="server" CssClass="LabelBold" Text="No records for the filtering selections you have chosen."></asp:Label> </NoRecordsTemplate> </MasterTableView> <ClientSettings Resizing-AllowColumnResize="false" EnableRowHoverStyle="false" ReorderColumnsOnClient="false"> <Selecting AllowRowSelect="false" /> <Scrolling AllowScroll="True" UseStaticHeaders="True" /> <ClientEvents OnCommand="rgMelissaOutputReport_Report_RaiseCommand" /> </ClientSettings> </telerik:RadGrid> </td> </tr> </table>