c#里edititemtemplate模板中DropDownList赋值的问题
edititemtemplate模板中为DropDownList动态赋值,但是在整个GridView行里面只有奇数数列有值,所有偶数列的值是空值....下面是在RowDa...
edititemtemplate模板中为DropDownList动态赋值,但是在整个GridView行里面只有奇数数列有值,所有偶数列的值是空值.... 下面是在RowDataBound里面写的动态获取DropDownList值的过程 if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.RowState == DataControlRowState.Edit)
{
DropDownList dplist = (DropDownList)e.Row.FindControl("dplDropList");
BLL.ProductTypeBLL productTypeBll = new BLL.ProductTypeBLL();
List<Models.ProductType> list = productTypeBll.GetAllProductType();
foreach (Models.ProductType entity in list)
{
ListItem item = new ListItem(entity.TypeName, entity.Id.ToString());
dplist.Items.Add(item);
}
dplist.DataBind();
}
} 展开
{
if (e.Row.RowState == DataControlRowState.Edit)
{
DropDownList dplist = (DropDownList)e.Row.FindControl("dplDropList");
BLL.ProductTypeBLL productTypeBll = new BLL.ProductTypeBLL();
List<Models.ProductType> list = productTypeBll.GetAllProductType();
foreach (Models.ProductType entity in list)
{
ListItem item = new ListItem(entity.TypeName, entity.Id.ToString());
dplist.Items.Add(item);
}
dplist.DataBind();
}
} 展开
2013-06-19
展开全部
DropDownList tmpDL = (DropDownList)e.Item.Cells[4].Control[1];
string resultString = tmpDL.SelectedValue; //设置断点总是得到tmpDL.SelectedValue是头一条记录
//do update
......
string resultString = tmpDL.SelectedValue; //设置断点总是得到tmpDL.SelectedValue是头一条记录
//do update
......
2013-06-19
展开全部
你调试下,再编辑的时候,应该根本不会抽发这时间的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询