對於我們一個標籤綁定使用數據綁定到asp.net中的dropdownlist?
<asp:Label ID="Label2" runat="server" Text='<%#Eval("address") %>'></asp:Label>
如何將數據綁定到下拉列表這樣的數據?
asp:DropDownList ID="droplist" runat="server" >
<asp:ListItem Text="admin"></asp:ListItem>
<asp:ListItem Text="manager"></asp:ListItem>
</asp:DropDownList>
This works,t.y.注意到IntelliSense沒有選擇這個。這是竊聽我:( – Willmore