将数据绑定到下拉列表控件,该控件是我的网格视图的编辑模板 asp.net 但数据源位于代码隐藏中
本文关键字:控件 数据源 asp net 于代码 隐藏 代码 下拉列表 数据绑定 我的 编辑 | 更新日期: 2024-11-01 02:20:20
所以我有一个网格视图:
<asp:GridView ID="gvExamSched" runat="server" AutoGenerateColumns="False" CellPadding="4" DataSourceID="SqlDataSource1" ForeColor="#333333" GridLines="None" PageSize="30" Width="1030px" AllowSorting="True" AllowPaging="True" OnRowDataBound="gvExamSched_RowDataBound">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="ID" HeaderText="ID" SortExpression="ID" ItemStyle-Width="10%" ReadOnly="true"/>
<asp:BoundField DataField="FIRST_NAME" HeaderText="FIRST_NAME" SortExpression="FIRST_NAME" ReadOnly="true" />
<asp:BoundField DataField="MIDDLE_NAME" HeaderText="MIDDLE_NAME" SortExpression="MIDDLE_NAME" ReadOnly="true"/>
<asp:BoundField DataField="LAST_NAME" HeaderText="LAST_NAME" SortExpression="LAST_NAME" ReadOnly="true"/>
<asp:BoundField DataField="EXTN" HeaderText="EXTN" SortExpression="EXTN" ReadOnly="true"/>
<asp:BoundField DataField="OR #" HeaderText="OR #" SortExpression="OR #" />
<asp:BoundField DataField="DATE" HeaderText="DATE" SortExpression="DATE" ItemStyle-Width="15%" />
<asp:TemplateField HeaderText="TIME_FROM" SortExpression="TIME_FROM">
<EditItemTemplate>
<asp:DropDownList ID="ddlTimeFrom" runat="server" Width="80px"></asp:DropDownList>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("TIME_FROM") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="TIME_TO" HeaderText="TIME_TO" SortExpression="TIME_TO" />
<asp:BoundField DataField="ROOM" HeaderText="ROOM" SortExpression="ROOM" />
<asp:CommandField ShowEditButton="True" />
</Columns>
<EditRowStyle BackColor="#7C6F57" />
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#666666" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#E3EAEB" />
<SelectedRowStyle BackColor="#C5BBAF" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F8FAFA" />
<SortedAscendingHeaderStyle BackColor="#246B61" />
<SortedDescendingCellStyle BackColor="#D4DFE1" />
<SortedDescendingHeaderStyle BackColor="#15524A" />
</asp:GridView>
现在下拉列表(ddlTimeFrom)它的数据来自代码behin (c#)这是:
private void BindTime()
{
DateTime StartTime = DateTime.ParseExact("00:00", "HH:mm", null);
DateTime EndTime = DateTime.ParseExact("23:55", "HH:mm", null);
TimeSpan Interval = new TimeSpan(0,5,0);
ddlTimeFrom.Items.Clear();
ddlTimeTo.Items.Clear();
while (StartTime <= EndTime)
{
ddlTimeFrom.Items.Add(StartTime.ToShortTimeString());
ddlTimeTo.Items.Add(StartTime.ToShortTimeString());
StartTime = StartTime.Add(Interval);
}
ddlTimeFrom.Items.Insert(0, new ListItem("--Select--", "0"));
ddlTimeTo.Items.Insert(0, new ListItem("--Select--", "0"));
}
起初我没有使用网格视图,所以我倾向于在下拉列表中的项目page_load内调用 BindTime(),但现在我需要使用 gridview 编辑它,但我不知道如何...甚至可能吗?如果不是,那么我想我只需要每次手动放置在项目上。提前感谢!
处理 GridView 行编辑事件并在那里执行自定义逻辑。有关详细信息,请参阅此处:网格视图行编辑 - 动态绑定到下拉列表