Background image in GridView header

  • Thread starter Thread starter staeri
  • Start date Start date
S

staeri

I want to display a background image in the header of my GridView but
when I do that by setting HeaderImageUrl="..." the HeaderText isn't
visible.

It seems to me that either I can show the HeaderText and no background
image or vice versa.

Is there a solution?

Regards,

S
 
Try creating a css class like this

..gvHeaderRow
{
background-image:url(/path/to/image.jpg);
}

then for your gridview you can set
GridView1.HeaderRow.CssClass = "gvHeaderRow"

just tested it out and seems to work fine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top