在 itemdatabound 的列表视图中设置 Dropdownlist 值
我有动态发布的年份下拉列表。我已经使用对象数据源填充了下拉列表。在插入列表视图控件时它工作正常。但是当我单击编辑按钮时,应该设置来自数据库的下拉列表值。 例如,如果我有一行包含 Year=2006 和 Month=“Jan” 然后单击编辑按钮,这些下拉列表应该被填充。
我已经在 ItemDataBound 中编写了代码来设置 dropdownlilst 的值。但是当我使用 findcontrol 时,它的值为 null,因此出现对象引用错误。所以请为我提供解决方案。
谢谢萨米尔
i have dropdownlist of year which is coming dynamically.i have filled the dropdownlist using object datasource.on inserting in the listview control it is working fine. but when i click on edit button that dropdownlist value should be set which is coming from the database.
e.g. if i have a row which contains Year=2006 and month="Jan"
then on click on edit button these dropdown list should be fill up.
i have written the code in ItemDataBound to set the value of the dropdownlilst.but when i use findcontrol its taking null so object reference error is coming. so please provide me the solution.
thanks
samir
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我编写了以下代码
protected void ListView_Articles_ItemDataBound(object sender, ListViewItemEventArgs e )
{
// 我发现 ddlyear 为 null,因此无法绑定数据。
i have written the below code
protected void ListView_Articles_ItemDataBound(object sender, ListViewItemEventArgs e )
{
// i found that ddlyear is null so it unable to bind the data.