c#.netクライアント側のドロップダウンボックスにあるストアドプロシージャショーからデータを取得するにはどうすればよいですか?私は次のコードを試してみる必要がありますが、これは私にとってはうまくいきません.. :(誰かがここで何が間違っているのか教えてもらえますか?
<div id="test-area">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<asp:DropDownList ID="DropDownEventType" runat="server" CssClass="dropDownEventType" DataSourceID="spdropDownEventType">
<asp:ListItem></asp:ListItem>
</asp:DropDownList>
<asp:AccessDataSource
ConnectionString="<%= ConnectionStrings:ApplicationServices %>"
SelectCommand="app_Event_Type_Select"
SelectCommandType="StoredProcedure"
ID="spdropDownEventType"
runat="server"></asp:AccessDataSource>
</td>
</tr>
</table>
</div>