会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
higou
http://blog.higou.com
DataGrid中绑定DropDownList
Code
1
protected
void
DataGrid1_ItemDataBound(
object
sender, DataGridItemEventArgs e)
2
{
3
4
if
(e.Item.ItemType
==
ListItemType.EditItem)
5
{
6
DropDownList ddl
=
new
DropDownList();
7
ddl
=
((DropDownList)(e.Item.FindControl(
"
ddlRatingClass
"
)));
8
ddl.DataSource
=
RatingClass.getRatingClass().DefaultView;
9
ddl.DataTextField
=
"
RatingClassName
"
;
10
ddl.DataValueField
=
"
RatingClassName
"
;
11
ddl.DataBind();
12
}
13
}
posted on
2008-10-18 14:37
骇狗
阅读(
142
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
新随笔
联系
订阅
管理
公告