在 FormView 中绑定下拉列表
我想填充 FormView 内的下拉列表。我在 PageLoad 事件中编写此代码:
DropDownList ddlTypeOfPayment = dvBooking.FindControl("ddlTypeOfPayment") as DropDownList;
但是当我编译时,它会引发错误“对象引用未设置为对象的实例”。 我正在使用 objectdatasource 来绑定 formview。 我该怎么做?
I want to fill dropdownlist which is inside FormView. I'm writing this code at PageLoad event:
DropDownList ddlTypeOfPayment = dvBooking.FindControl("ddlTypeOfPayment") as DropDownList;
But when I compile itraises the error "Object reference is not set to an instance of object".
I'm using objectdatasource to bind formview.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不要将其放在 PageLoad 中,而是将其放在 formview 的
protected void FormView1_DataBound(object sender, EventArgs e)
事件中。你也想这样做:
You don't put it in PageLoad you put it in the
protected void FormView1_DataBound(object sender, EventArgs e)
event of your formview.You'll want to do this instead too: