Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a gridview, inside the gridview I have a template field and inside that, a drop down list.

        <asp:TemplateField>
            <ItemTemplate>
                <asp:DropDownList ID="Hello" runat="server">
                </asp:DropDownList>
            </ItemTemplate>
        </asp:TemplateField>

I want to databind the gridview but how do I make the drop down list change its value to according to the information I gave it while databinding?

Im used to using DataField in bound fields

         <asp:BoundField HeaderText="Hello" DataField="HelloDB" />
share|improve this question

3 Answers

up vote 1 down vote accepted

All you have to do is tap into the OnRowDataBind event of the gridview. Within that, you can use FindControl() to get the drop down, cast it as a dropdown, then set the value.

This event is called when each row is databound, so each dropdown would be updated.

share|improve this answer

Microsoft provides a walk-through on this.

http://msdn.microsoft.com/en-us/library/ms178294(VS.80).aspx

and quick Bing search comes up with many other articles and how-to's.

http://www.bing.com/search?q=drop-down+list+in+gridview&src=IE-SearchBox&FORM=IE8SRC

share|improve this answer

Example:

protected void MethodName(object sender, System.Web.UI.WebControls.GridViewRowEventArgs e)
{
if (e.Row.RowType == System.Web.UI.WebControls.DataControlRowType.DataRow)
    {
     DropDownList Hello = e.Row.FindControl("Hello") as DropDownList;
     //here you can bind the dropdown list.

    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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