Hello,
I have the following grid view (using VS 2005 - VB.NET):
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="2"
DataSourceID="SqlDataSourceAD" ForeColor="#333333" GridLines="None" AllowPaging="True" AllowSorting="True" Font-Size="Small" PageSize="25">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" Wrap="True" />
<Columns>
<asp:HyperLinkField DataNavigateUrlFields="sAMAccountName" DataTextField="displayName" DataTextFormatString="{0}" HeaderText="Colleague" SortExpression="displayName" DataNavigateUrlFormatString="details.aspx?AccountName={0}" />
<asp:BoundField DataField="ipPhone" HeaderText="Extention" SortExpression="ipPhone" />
<asp:BoundField DataField="mobile" HeaderText="Mobile" SortExpression="mobile" />
<asp:BoundField DataField="title" HeaderText="Role" SortExpression="title" />
<asp:BoundField DataField="department" HeaderText="Department" SortExpression="department" />
<asp:BoundField DataField="Secretary" HeaderText="Secretary" SortExpression="Secretary" />
<asp:BoundField DataField="physicalDeliveryOfficeName" HeaderText="Office" SortExpression="physicalDeliveryOfficeName" />
<asp:HyperLinkField DataNavigateUrlFields="mail" DataTextField="mail" DataTextFormatString="<a href=mailto:{0}>{0}</a>" HeaderText="Email" SortExpression="mail" />
</Columns>
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<EditRowStyle BackColor="#999999" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
The final column contains an email link - I'd like to be able to replace the text with an image (email.jpg) so that the image provides the mailto: link but cant get it to work. Anyone have any ideas?
Thanks In Advance.
Rick
I have the following grid view (using VS 2005 - VB.NET):
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="2"
DataSourceID="SqlDataSourceAD" ForeColor="#333333" GridLines="None" AllowPaging="True" AllowSorting="True" Font-Size="Small" PageSize="25">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" Wrap="True" />
<Columns>
<asp:HyperLinkField DataNavigateUrlFields="sAMAccountName" DataTextField="displayName" DataTextFormatString="{0}" HeaderText="Colleague" SortExpression="displayName" DataNavigateUrlFormatString="details.aspx?AccountName={0}" />
<asp:BoundField DataField="ipPhone" HeaderText="Extention" SortExpression="ipPhone" />
<asp:BoundField DataField="mobile" HeaderText="Mobile" SortExpression="mobile" />
<asp:BoundField DataField="title" HeaderText="Role" SortExpression="title" />
<asp:BoundField DataField="department" HeaderText="Department" SortExpression="department" />
<asp:BoundField DataField="Secretary" HeaderText="Secretary" SortExpression="Secretary" />
<asp:BoundField DataField="physicalDeliveryOfficeName" HeaderText="Office" SortExpression="physicalDeliveryOfficeName" />
<asp:HyperLinkField DataNavigateUrlFields="mail" DataTextField="mail" DataTextFormatString="<a href=mailto:{0}>{0}</a>" HeaderText="Email" SortExpression="mail" />
</Columns>
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<EditRowStyle BackColor="#999999" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
The final column contains an email link - I'd like to be able to replace the text with an image (email.jpg) so that the image provides the mailto: link but cant get it to work. Anyone have any ideas?
Thanks In Advance.
Rick