I am able to use this method in asp.net grids but am switching over to radgrids in new projects. What happens is that when I click on it it should just open the email, but with the radgird it also wants to try to navigate to the email to as well. How can I just use it as a way to open the ema
il of your computer.
<telerik:RadGrid ID="myRadGrid" runat="server" Width="95%" BorderWidth="1px" CellPadding="6" GridLines="None" BorderColor="#404040" Skin="Web20" ShowFooter="true"> <MasterTableView AutoGenerateColumns="false" DataKeyNames="intIssuedID" HierarchyDefaultExpanded="false" HierarchyLoadMode="ServerBind" Name="MasterGrid" BorderColor="#404040" Font-Size="10" Font-Names="Veranda,arial,sans-serif" HeaderStyle-HorizontalAlign="Center" GridLines="Both" BorderWidth="1px"><ItemStyle HorizontalAlign="Center" /> <AlternatingItemStyle BackColor="#B0C4DE" HorizontalAlign="Center" /><HeaderStyle ForeColor="White" Font-Bold="true" BorderColor="#404040" BorderWidth="1px" /> <Columns> <telerik:GridBoundColumn DataField="strAssetNum" HeaderText="ASSET TAG #" /> <telerik:GridBoundColumn DataField="Equip" HeaderText="EQUIPMENT" /> <telerik:GridBoundColumn DataField="dt_Issued" HeaderText="DT_ISSUED" /> <telerik:GridBoundColumn DataField="strLocation" HeaderText="LOCATION" /> <telerik:GridTemplateColumn HeaderText="ISSUED TO"> <ItemTemplate> <asp:HyperLink NavigateUrl='<%# Bind("strEmail", "mailto:{0}") %>' Text='<%# Bind("IssuedTo") %>' runat="server" ID="hlEmail"></asp:HyperLink> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="ftQTY" HeaderText="QTY" /> </Columns> </MasterTableView> </telerik:RadGrid>