有什么方法可以将数据源绑定到具有runat=server属性的html select标签。

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

最佳答案

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

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

就像asp下拉列表框一样

08-06 19:20