Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

binded

Bind dropwdown in gridview
Friday, 27 January 2012 10:39
// Bind dropwdown in gridview


protected void GvTestGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataTable dtData= new DataTable();
dtData= GetData(); // Get your data to be binded to dropdown
DropDownList ddlFileData= (DropDownList)e.Row.FindControl("DdlFileData");
ddlFileData.Datasource = dtData;
ddlFileData.DataBind();
}
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/8kmY2oCEQr8/14477

 


Taxonomy by Zaragoza Online