我有一个由存储过程填充的 asp:dropdownlist,我想用 flexbox 替换它。我看到弹性框需要一个基于 json 的内容。任何指针如何替换我的代码?
<asp:DropDownList ID="StepDropDown" runat="server" AutoPostBack="True" DataSourceID="SteppingDataSource" DataTextField="Name" DataValueField="S_ID" OnSelectedIndexChanged="StepDropDown_SelectedIndexChanged" />
<asp:SqlDataSource ID="SteppingDataSource" runat="server" ConnectionString="<%$ ConnectionStrings:PerfMonConnectionString %>" SelectCommand="GetSteppings" SelectCommandType="StoredProcedure" />
在此先感谢您的帮助!