how can i giv style for BoundField.

am using BoundField in gridview. it shows a underline and a unwanted color.

how to remove underline and color.

link|improve this question
feedback

1 Answer

Depending on what bound field you are trying it might vary a little but here is an example. Each fields has properties for various styles and you can set CssClass as well.

.select{
text-decoration:none;
color:Red;
}
.product{
color:Blue;
}

<asp:CommandField ShowSelectButton="True">
    <ControlStyle CssClass="select" />
</asp:CommandField>
<asp:BoundField DataField="ProductName" HeaderText="Product Name" ItemStyle-CssClass="product">
        <ItemStyle CssClass="product" />
</asp:BoundField>

Go to GridView Properties->Columns and you will find all your fields listed there. There you can set the style properties of Boundfield.

Another alternative is using a Template Field where you will have more control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.