I am using following code to diplay barcode in radgrid control.
<telerik:GridTemplateColumn HeaderText="Card Number">
<HeaderStyle CssClass="HeaderBodyGray" Wrap="true" Width="80px" HorizontalAlign="Center" ForeColor="White"/>
<ItemStyle CssClass="ItemBody" Width="80px" HorizontalAlign="Center" VerticalAlign="Middle"
<ItemTemplate>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center">
<font face="C39 High 36pt LJ4" style="font-size: 50px;line-height:40px;">*<%#Eval("CardID").ToString.ToUpper%>*</font>
</td>
</tr>
<tr>
<td align="center">
<span style="font-size: 7px;">
<%#FromatSKU(Eval("CardID"))%></span>
</td>
</tr>
</table> </ItemTemplate>
</telerik:GridTemplateColumn>
and using font face to display barcode.
It was working fine with asp datagrid but when i replace datagrid with telerik radgrid, it is not working.
Is there anymore way to display barcode in telerik Radgrid control?
Thanks,
Alex