111,129
社区成员
发帖
与我相关
我的任务
分享


<asp:GridView ID="gv" runat="server" Width="2560px" AutoGenerateColumns="False">
<Columns>
<asp:BoundField DataField="u_id">
<HeaderStyle Width="80px" />
</asp:BoundField>
<asp:BoundField DataField="u_name" >
<HeaderStyle Width="80px"/>
</asp:BoundField>
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="DropDownList" runat="server">
<asp:ListItem Value="1" Selected="True">早班</asp:ListItem>
<asp:ListItem Value="2" >中班</asp:ListItem>
<asp:ListItem Value="3">晚班</asp:ListItem>
<asp:ListItem Value="4">公休</asp:ListItem>
</asp:DropDownList>
</ItemTemplate>
<HeaderStyle Width="80px" />
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="DropDownList" runat="server">
<asp:ListItem Value="1" Selected="True">早班</asp:ListItem>
<asp:ListItem Value="2" >中班</asp:ListItem>
<asp:ListItem Value="3">晚班</asp:ListItem>
<asp:ListItem Value="4">公休</asp:ListItem>
</asp:DropDownList>
</ItemTemplate>
<HeaderStyle Width="80px" />
</asp:TemplateField>
!---一共31个模板列
</Columns>
</asp:GridView>

