<telerik:RadComboBox ID="RadComboBox1" runat="server" Skin="Default" HighlightTemplatedItems="True"
ShowToggleImage="True" MarkFirstMatch="True">
<ItemTemplate>
<table>
<tr>
<td >
<asp:Image ID="Image1" runat="server" ImageUrl=<%# DataBinder.Eval(Container, "Attributes['Image']")%> />
</td>
<td style=" border-left-style:solid; width:1px"> </td>
<td >
(<%# DataBinder.Eval(Container,"Text") %>)
</td>
</tr>
</table>
</ItemTemplate>
<Items>
<telerik:RadComboBoxItem
Image='../../excel.gif' // This one don't work.
Text="导出Excel">
</telerik:RadComboBoxItem>
<telerik:RadComboBoxItem
Image="../../word.gif" // This one don't work.
Text="导出Word">
</telerik:RadComboBoxItem>
<telerik:RadComboBoxItem
Image="D:\image\3.jpg" // This work properly.
Text="导出PDF">
</telerik:RadComboBoxItem>
<telerik:RadComboBoxItem
Image="D:\image\4.jpg" // This work properly.
Text="导出CVS">
</telerik:RadComboBoxItem>
</Items>
</telerik:RadComboBox>