我如何将数据绑定到 gridview 中的下拉菜单(EditItemTemplate)
我声明我的模板如下,
<EditItemTemplate>
<asp:DropDownList ID="ddlYear" runat="server" DataSource='<%#GetYears() %>' DataTextField="year" DataValueField="year"></asp:DropDownList>
</EditItemTemplate>
我需要绑定我使用的函数 GetYears() 中的数据,我不知道如何运行它,任何人都可以帮助我,
我需要数据,例如当我单击时在下拉列表中加载名称编辑 gridview 是正确的方法还是有任何最佳方法可以做到这一点
I declared my template as follows
<EditItemTemplate>
<asp:DropDownList ID="ddlYear" runat="server" DataSource='<%#GetYears() %>' DataTextField="year" DataValueField="year"></asp:DropDownList>
</EditItemTemplate>
I need to bind the data from the function i used GetYears() i don't know how to function it can any one help me
I need the data for example name to be loaded in dropdown when i click on Edit of gridview is it the correct way or is there any best way to do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在后面的代码中,您可以在单击编辑链接时使用 findcontrol 方法找到下拉菜单,并且可以轻松绑定。
in the code behind you can find dropdown using findcontrol method on the click of edit link and can bind easily.
您可以在页面上创建一个 objectDatasource,然后将 datasourceid 设置为该 objectDataSource。然后你可以创建你的 POCO 类
有关 objectdatasource 的更多信息,请查看此链接
http://quickstarts.asp.net/QuickStartv20/aspnet/doc /ctrlref/data/objectdatasource.aspx
You could create an objectDatasource on the page and then set the datasourceid to that objectDataSource. Then you can create your POCO class
Look at this link for more info on objectdatasource
http://quickstarts.asp.net/QuickStartv20/aspnet/doc/ctrlref/data/objectdatasource.aspx