ASP.net dropdownlist 下拉列表 应该怎么做 求ASP大神
展开全部
前台数据
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>S</asp:ListItem>
<asp:ListItem>M</asp:ListItem>
<asp:ListItem>L</asp:ListItem>
</asp:DropDownList>
你要选一个弹窗的话 他有对应的
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" 事件
在后台里面弹出 DropDownList1.SelectedValue 的值就能实现
如果你要通过后台绑定数据到 DropDownList 也是通过 键值对的形式绑定的
DropDownList1.DataSource= 你要绑定的数据
DropDownList1ataTextField = 绑定数据的文本内容
DropDownList1.DataValueField = 绑定数据的文本值
DropDownList1ataBind();
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>S</asp:ListItem>
<asp:ListItem>M</asp:ListItem>
<asp:ListItem>L</asp:ListItem>
</asp:DropDownList>
你要选一个弹窗的话 他有对应的
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" 事件
在后台里面弹出 DropDownList1.SelectedValue 的值就能实现
如果你要通过后台绑定数据到 DropDownList 也是通过 键值对的形式绑定的
DropDownList1.DataSource= 你要绑定的数据
DropDownList1ataTextField = 绑定数据的文本内容
DropDownList1.DataValueField = 绑定数据的文本值
DropDownList1ataBind();
追问
我是一位初学者 能以加控件形式做一次吗?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询