I'm trying to add a drop down list to a gridview header. The number of
columns can change so it has to be done in the code behind (the .cs
file). Please help me with this.
Do it in either RowCreated or RowDataBound event. Both fire for every grid
row, including the header. You can tell the header by looking in the RowType
property.

Signature
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
> I'm trying to add a drop down list to a gridview header. The number of
> columns can change so it has to be done in the code behind (the .cs
> file). Please help me with this.
CDonlan - 06 Aug 2007 21:13 GMT
Thanks a lot. I ended up adding it on the row data bound. Can you help
me out with even handling? Im doing
ddl.SelectedIndexChanged += new EventHandler(HandelDropDownList);
but its throwing an error.
Thanks.
On Aug 3, 3:28 am, "Eliyahu Goldin"
<REMOVEALLCAPITALSeEgGoldD...@mMvVpPsS.org> wrote:
> Do it in either RowCreated or RowDataBound event. Both fire for every grid
> row, including the header. You can tell the header by looking in the RowType
[quoted text clipped - 8 lines]
> > columns can change so it has to be done in the code behind (the .cs
> > file). Please help me with this.