2

使用: asp.net および C#

SQL Server ストアド プロシージャの値をコンボ ボックスに入力しようとしています。コンボボックスをロードして動作させていますが、顧客が選択できるように値をドロップダウン リストとして表示する方法がわかりません。また、ListItem はドロップダウン メニューをロードする正しい方法ですか?

これが私がこれまでに持っているものです:

.aspxページ:

<asp:ToolkitScriptManager ID="ScriptManager1" runat="server" />
<div>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>
    <asp:ComboBox ID="ComboBox1" runat="server" DataSourceID="SQL" 
            DataTextField="DataText" DataValueField="DataValue" MaxLength="0" 
            style="display: inline;">
            <asp:ListItem Value="0">Please Choose an Item......</asp:ListItem>
            //What do I put here to load and display the stored procedure in a list
    </asp:ComboBox>
        <asp:SqlDataSource ID="SQL1" runat="server" 
            ConnectionString="<%$ CompanyConnectionString %>" 
            SelectCommand="CompanyStoredProcedure" SelectCommandType="StoredProcedure">
            <SelectParameters>
                <asp:Parameter Name="ParameterID" Type="Int32" />
            </SelectParameters>
        </asp:SqlDataSource>
  <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
    </ContentTemplate>
    </asp:UpdatePanel>
  </div>
  </asp:ToolkitScriptManager>
4

1 に答える 1