vote up 1 vote down star

Is there an efficient way to overwrite the HTML output of a header and footer of an ASP.NET GridView control?

I would like to implement a methodology that is similar to the HeaderTemplate tag in an ASP.NET Repeater or does not require to include dynamically building the HTML output in the page code behind. If these two types of options are available with a ASP.NET GridView control.

flag

77% accept rate

2 Answers

vote up 0 vote down

You may want to consider looking into using an ASP.Net Control Adapter. I have used them for very basic things, but just as Scott Guthrie notes:

A control adapter allows you to plug-into any ASP.NET server control and override, modify and/or tweak the rendering output logic of that control.

The Toolkit also contains several "out of the box" adapters you can draw from for examples, including the GridView. Again, I am not 100% sure you will be able to do exactly what you want, but it is worth checking out for sure. If nothing more than to put another ASP.Net trick under your belt.

link|flag
Thanks for the information. I will look into for my next project. – Michael Kniskern Jun 3 at 16:27
vote up 0 vote down

You can also inherit the control and override the Render function. I had to do that to fix a shortcoming of the ASP.NET radio button. The basic idea is here, you might be able to modify it for your needs:

http://www.codeproject.com/KB/webforms/How_group_RButtons.aspx

link|flag

Your Answer

Get an OpenID
or

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