0
我想將下面的asp dropdowlist轉換爲telerik mvc dropdownlist。 我正在使用SQL存儲過程來彈出列表。MVC下拉列表Telerik MVC Dropdowlist
<asp:DropDownList ID="userName" name="userName" runat="server" DataSourceID="SqlDataSource1"
DataTextField="FullName" DataValueField="UserName">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:HHNConnectionString %>"
SelectCommand="GetUserName" SelectCommandType="StoredProcedure"></asp:SqlDataSource>
在此先感謝。
謝謝。這工作。 – hncl