In article <#>, SStory wrote:
> more detailed info on my problem :
>
> Have a data grid--for simplicity's sake defined as follows.
> just look at hyperlinkcolumn definition.
>
><asp:datagrid id="grid" runat="server" Width="680px"
> CssClass="smallblacktext" DataKeyField="jobid" AllowPaging="True"
> AutoGenerateColumns="False">
> <asp:HyperLinkColumn DataNavigateUrlField="Email"
> DataNavigateUrlFormatString="mailto:{0}" DataTextField="email"
> HeaderText="Rep Email">
<asp:HyperLinkColumn ... ItemStyle-CssClass="MyHlStyle" />
and in the stylesheet
..MyHlStyle A:link, .MyHlStyle A:visited
{
color: purple;
font-size: 128pt
}
or whatever you want. That won't affect your normal <A> tags, just the
ones inside your specific hyperlink column.
--
David
dfoster at
hotpop dot com
|