印刷結果のリストを含むグリッドビューがあります。各行には、再印刷する追加のボタンがあり、再印刷の理由が必要です。以下のように、ドロップダウンリストの項目を aspx ファイルに手動で保存しています。
<asp:GridView SkinID="gridviewSkinmspgate" ID="grdPrintConfirmation"
Width="400px" runat="server"
AutoGenerateColumns="false"
OnRowCommand="grdPrintConfirmation_RowCommand"
>
<Columns>
<asp:TemplateField HeaderText="Label Spec Ref" ControlStyle-Width="100px" >
<ItemTemplate>
<asp:Label ID="LblSpecRef" runat="server"
text='<%#Eval("GeneratedLabelForPrint.LabelSpecRef")%>' ></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Printer Name" ControlStyle-Width="100%">
<ItemTemplate>
<asp:Label ID="PrinterName" runat="server"
text='<%#Eval("GeneratedLabelForPrint.PrinterName")%>' ></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Print Successful" ControlStyle-Width="100px">
<ItemTemplate>
<asp:Label ID="IsPrintSuccessful" runat="server"
text='<%#Eval("IsPrintSuccessful")%>' ></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Reprint Count" ControlStyle-Width="100px">
<ItemTemplate>
<asp:Label ID="ReprintCount" runat="server"
text='<%#Eval("ReprintCount")%>' ></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Reprint Reason" ControlStyle-Width="150px">
<ItemTemplate>
<asp:DropDownList runat="server" ID="ddlReason">
<asp:ListItem Text="(Please Select)" Value="1" Selected="True"></asp:ListItem>
<asp:ListItem Text="Printer not working" Value="2"></asp:ListItem>
<asp:ListItem Text="Printer out of paper" Value="3"></asp:ListItem>
<asp:ListItem Text="Other" Value="4"></asp:ListItem>
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Reprint" ControlStyle-Width="150px">
<ItemTemplate>
<asp:LinkButton runat="server"
ItemStyle-Width="80px" ItemStyle-HorizontalAlign="Left" ItemStyle-VerticalAlign="Middle"
CommandArgument="<%# ((GridViewRow) Container).RowIndex %>"
CommandName="btnReprint" Text="Submit Reprint" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
上記のコードでは、各行に以下の 3 つの項目を含むドロップダウン リストがあります。
UIで「その他」を選択すると、ユーザーが他の理由で入力できるようにテキストボックスに変わります。