将数据源绑定到html <select>标记</select>

时间:2011-03-30 07:48:49

标签: asp.net

有没有办法将数据源绑定到具有runat=server属性的html选择标记。

<select runat="server" onchange="showdistrict();" class="textbox" id="DpCity" name="DpCity">
    <option value="0">unknow</option>
</select>

1 个答案:

答案 0 :(得分:7)

我自己找到了答案,所以我会分享。 通过使用runat =“server”属性并分配一个id来控制它将在后面的代码中访问。 例如DpCity是我的html选择标记,所以我可以使用下面的代码来绑定数据源:

DpCity.DataTextField = "title";
        DpCity.DataValueField = "val";
        DpCity.DataSource = SrCity;
        DpCity.DataBind();

就像asp下拉列表框一样